2 * $RCSId: xc/lib/fontconfig/src/fcint.h,v 1.27 2002/08/31 22:17:32 keithp Exp $
4 * Copyright © 2000 Keith Packard
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation, and that the name of Keith Packard not be used in
11 * advertising or publicity pertaining to distribution of the software without
12 * specific, written prior permission. Keith Packard makes no
13 * representations about the suitability of this software for any purpose. It
14 * is provided "as is" without express or implied warranty.
16 * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18 * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
20 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
21 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22 * PERFORMANCE OF THIS SOFTWARE.
34 #ifdef HAVE_INTTYPES_H
36 #elif defined(HAVE_STDINT_H)
39 #error missing C99 integer data types
45 #include <sys/types.h>
48 #include <fontconfig/fontconfig.h>
49 #include <fontconfig/fcprivate.h>
50 #include <fontconfig/fcfreetype.h>
52 #ifndef FC_CONFIG_PATH
53 #define FC_CONFIG_PATH "fonts.conf"
56 #define FC_FONT_FILE_INVALID ((FcChar8 *) ".")
57 #define FC_FONT_FILE_DIR ((FcChar8 *) ".dir")
58 #define FC_GLOBAL_MAGIC_COOKIE "GLOBAL"
61 #define FC_SEARCH_PATH_SEPARATOR ';'
63 #define FC_SEARCH_PATH_SEPARATOR ':'
66 #define FC_DBG_MATCH 1
67 #define FC_DBG_MATCHV 2
69 #define FC_DBG_FONTSET 8
70 #define FC_DBG_CACHE 16
71 #define FC_DBG_CACHEV 32
72 #define FC_DBG_PARSE 64
73 #define FC_DBG_SCAN 128
74 #define FC_DBG_SCANV 256
75 #define FC_DBG_MEMORY 512
76 #define FC_DBG_CONFIG 1024
77 #define FC_DBG_LANGSET 2048
79 #define FC_MEM_CHARSET 0
80 #define FC_MEM_CHARLEAF 1
81 #define FC_MEM_FONTSET 2
82 #define FC_MEM_FONTPTR 3
83 #define FC_MEM_OBJECTSET 4
84 #define FC_MEM_OBJECTPTR 5
85 #define FC_MEM_MATRIX 6
86 #define FC_MEM_PATTERN 7
87 #define FC_MEM_PATELT 8
88 #define FC_MEM_VALLIST 9
89 #define FC_MEM_SUBSTATE 10
90 #define FC_MEM_STRING 11
91 #define FC_MEM_LISTBUCK 12
92 #define FC_MEM_STRSET 13
93 #define FC_MEM_STRLIST 14
94 #define FC_MEM_CONFIG 15
95 #define FC_MEM_LANGSET 16
96 #define FC_MEM_ATOMIC 17
97 #define FC_MEM_BLANKS 18
98 #define FC_MEM_CACHE 19
99 #define FC_MEM_STRBUF 20
100 #define FC_MEM_SUBST 21
101 #define FC_MEM_OBJECTTYPE 22
102 #define FC_MEM_CONSTANT 23
103 #define FC_MEM_TEST 24
104 #define FC_MEM_EXPR 25
105 #define FC_MEM_VSTACK 26
106 #define FC_MEM_ATTR 27
107 #define FC_MEM_PSTACK 28
108 #define FC_MEM_STATICSTR 29
110 #define FC_MEM_NUM 30
112 #define FC_BANK_DYNAMIC 0
113 #define FC_BANK_FIRST 1
114 #define FC_BANK_LANGS 0xfcfcfcfc
116 typedef enum _FcValueBinding {
117 FcValueBindingWeak, FcValueBindingStrong, FcValueBindingSame
121 * Serialized data structures use only offsets instead of pointers
122 * A low bit of 1 indicates an offset.
125 /* Is the provided pointer actually an offset? */
126 #define FcIsEncodedOffset(p) ((((intptr_t) (p)) & 1) != 0)
128 /* Encode offset in a pointer of type t */
129 #define FcOffsetEncode(o,t) ((t *) ((o) | 1))
131 /* Decode a pointer into an offset */
132 #define FcOffsetDecode(p) (((intptr_t) (p)) & ~1)
134 /* Compute pointer offset */
135 #define FcPtrToOffset(b,p) ((intptr_t) (p) - (intptr_t) (b))
137 /* Given base address, offset and type, return a pointer */
138 #define FcOffsetToPtr(b,o,t) ((t *) ((intptr_t) (b) + (o)))
140 /* Given base address, encoded offset and type, return a pointer */
141 #define FcEncodedOffsetToPtr(b,p,t) FcOffsetToPtr(b,FcOffsetDecode(p),t)
143 /* Given base address, pointer and type, return an encoded offset */
144 #define FcPtrToEncodedOffset(b,p,t) FcOffsetEncode(FcPtrToOffset(b,p),t)
146 /* Given a structure, offset member and type, return pointer */
147 #define FcOffsetMember(s,m,t) FcOffsetToPtr(s,(s)->m,t)
149 /* Given a structure, encoded offset member and type, return pointer to member */
150 #define FcEncodedOffsetMember(s,m,t) FcOffsetToPtr(s,FcOffsetDecode((s)->m), t)
152 /* Given a structure, member and type, convert the member to a pointer */
153 #define FcPointerMember(s,m,t) (FcIsEncodedOffset((s)->m) ? \
154 FcEncodedOffsetMember (s,m,t) : \
158 * Serialized values may hold strings, charsets and langsets as pointers,
159 * unfortunately FcValue is an exposed type so we can't just always use
162 #define FcValueString(v) FcPointerMember(v,u.s,FcChar8)
163 #define FcValueCharSet(v) FcPointerMember(v,u.c,const FcCharSet)
164 #define FcValueLangSet(v) FcPointerMember(v,u.l,const FcLangSet)
166 typedef struct _FcValueList *FcValueListPtr;
168 typedef struct _FcValueList {
169 struct _FcValueList *next;
171 FcValueBinding binding;
174 #define FcValueListNext(vl) FcPointerMember(vl,next,FcValueList)
176 typedef int FcObject;
178 typedef struct _FcPatternElt *FcPatternEltPtr;
181 * Pattern elts are stuck in a structure connected to the pattern,
182 * so they get moved around when the pattern is resized. Hence, the
183 * values field must be a pointer/offset instead of just an offset
185 typedef struct _FcPatternElt {
190 #define FcPatternEltValues(pe) FcPointerMember(pe,values,FcValueList)
195 intptr_t elts_offset;
199 #define FcPatternElts(p) FcOffsetMember(p,elts_offset,FcPatternElt)
201 #define FcFontSetFonts(fs) FcPointerMember(fs,fonts,FcPattern *)
203 #define FcFontSetFont(fs,i) (FcIsEncodedOffset((fs)->fonts) ? \
204 FcEncodedOffsetToPtr(FcFontSetFonts(fs), \
205 FcFontSetFonts(fs)[i], \
210 FcOpInteger, FcOpDouble, FcOpString, FcOpMatrix, FcOpBool, FcOpCharSet,
212 FcOpField, FcOpConst,
213 FcOpAssign, FcOpAssignReplace,
214 FcOpPrependFirst, FcOpPrepend, FcOpAppend, FcOpAppendLast,
216 FcOpOr, FcOpAnd, FcOpEqual, FcOpNotEqual,
217 FcOpContains, FcOpListing, FcOpNotContains,
218 FcOpLess, FcOpLessEqual, FcOpMore, FcOpMoreEqual,
219 FcOpPlus, FcOpMinus, FcOpTimes, FcOpDivide,
220 FcOpNot, FcOpComma, FcOpFloor, FcOpCeil, FcOpRound, FcOpTrunc,
224 typedef struct _FcExpr {
236 struct _FcExpr *left, *right;
241 typedef enum _FcQual {
242 FcQualAny, FcQualAll, FcQualFirst, FcQualNotFirst
245 #define FcMatchDefault ((FcMatchKind) -1)
247 typedef struct _FcTest {
248 struct _FcTest *next;
256 typedef struct _FcEdit {
257 struct _FcEdit *next;
261 FcValueBinding binding;
264 typedef struct _FcSubst {
265 struct _FcSubst *next;
270 typedef struct _FcCharLeaf {
271 FcChar32 map[256/32];
274 #define FC_REF_CONSTANT -1
277 int ref; /* reference count */
278 int num; /* size of leaves and numbers arrays */
279 intptr_t leaves_offset;
280 intptr_t numbers_offset;
283 #define FcCharSetLeaves(c) FcOffsetMember(c,leaves_offset,intptr_t)
284 #define FcCharSetLeaf(c,i) (FcOffsetToPtr(FcCharSetLeaves(c), \
285 FcCharSetLeaves(c)[i], \
287 #define FcCharSetNumbers(c) FcOffsetMember(c,numbers_offset,FcChar16)
290 int ref; /* reference count */
301 typedef struct _FcStrBuf {
309 typedef struct _FcCache {
310 int magic; /* FC_CACHE_MAGIC */
311 off_t size; /* size of file */
312 intptr_t dir; /* offset to dir name */
313 intptr_t dirs; /* offset to subdirs */
314 int dirs_count; /* number of subdir strings */
315 intptr_t set; /* offset to font set */
318 #define FcCacheDir(c) FcOffsetMember(c,dir,FcChar8)
319 #define FcCacheDirs(c) FcOffsetMember(c,dirs,intptr_t)
320 #define FcCacheSet(c) FcOffsetMember(c,set,FcFontSet)
323 * Used while constructing a directory cache object
326 #define FC_SERIALIZE_HASH_SIZE 8191
328 typedef struct _FcSerializeBucket {
329 struct _FcSerializeBucket *next;
334 typedef struct _FcSerialize {
337 FcSerializeBucket *buckets[FC_SERIALIZE_HASH_SIZE];
341 * To map adobe glyph names to unicode values, a precomputed hash
345 typedef struct _FcGlyphName {
346 FcChar32 ucs; /* unicode value */
347 FcChar8 name[1]; /* name extends beyond struct */
351 * To perform case-insensitive string comparisons, a table
352 * is used which holds three different kinds of folding data.
354 * The first is a range of upper case values mapping to a range
355 * of their lower case equivalents. Within each range, the offset
356 * between upper and lower case is constant.
358 * The second is a range of upper case values which are interleaved
359 * with their lower case equivalents.
361 * The third is a set of raw unicode values mapping to a list
362 * of unicode values for comparison purposes. This allows conversion
363 * of ß to "ss" so that SS, ss and ß all match. A separate array
364 * holds the list of unicode values for each entry.
366 * These are packed into a single table. Using a binary search,
367 * the appropriate entry can be located.
370 #define FC_CASE_FOLD_RANGE 0
371 #define FC_CASE_FOLD_EVEN_ODD 1
372 #define FC_CASE_FOLD_FULL 2
374 typedef struct _FcCaseFold {
378 short offset; /* lower - upper for RANGE, table id for FULL */
381 #define FC_MAX_FILE_LEN 4096
383 /* XXX remove these when we're ready */
385 #define fc_value_string(v) FcValueString(v)
386 #define fc_value_charset(v) FcValueCharSet(v)
387 #define fc_value_langset(v) FcValueLangSet(v)
388 #define fc_storage_type(v) ((v)->type)
390 #define fc_alignof(type) offsetof (struct { char c; type member; }, member)
392 #define FC_CACHE_MAGIC 0xFC02FC04
393 #define FC_CACHE_MAGIC_COPY 0xFC02FC05
396 FcChar8 *file; /* original file name */
397 FcChar8 *new; /* temp file name -- write data here */
398 FcChar8 *lck; /* lockfile name (used for locking) */
399 FcChar8 *tmp; /* tmpfile name (used for locking) */
408 typedef struct _FcCacheList {
409 struct _FcCacheList *next;
415 * File names loaded from the configuration -- saved here as the
416 * cache file must be consulted before the directories are scanned,
417 * and those directives may occur in any order
419 FcStrSet *configDirs; /* directories to scan for fonts */
421 * Set of allowed blank chars -- used to
422 * trim fonts of bogus glyphs
426 * List of directories containing fonts,
427 * built by recursively scanning the set
428 * of configured directories
432 * List of directories containing cache files.
436 * Names of all of the configuration files used
437 * to create this configuration
439 FcStrSet *configFiles; /* config files loaded */
441 * Substitution instructions for patterns and fonts;
442 * maxObjects is used to allocate appropriate intermediate storage
443 * while performing a whole set of substitutions
445 FcSubst *substPattern; /* substitutions for patterns */
446 FcSubst *substFont; /* substitutions for fonts */
447 int maxObjects; /* maximum number of tests in all substs */
449 * List of patterns used to control font file selection
451 FcStrSet *acceptGlobs;
452 FcStrSet *rejectGlobs;
453 FcFontSet *acceptPatterns;
454 FcFontSet *rejectPatterns;
456 * The set of fonts loaded from the listed directories; the
457 * order within the set does not determine the font selection,
458 * except in the case of identical matches in which case earlier fonts
459 * match preferrentially
461 FcFontSet *fonts[FcSetApplication + 1];
463 * Font cache information is mapped from cache files
464 * the configuration is destroyed, the files need to be unmapped
468 * Fontconfig can periodically rescan the system configuration
469 * and font directories. This rescanning occurs when font
470 * listing requests are made, but no more often than rescanInterval
473 time_t rescanTime; /* last time information was scanned */
474 int rescanInterval; /* interval between scans */
477 extern FcConfig *_fcConfig;
479 typedef struct _FcFileTime {
484 typedef struct _FcCharMap FcCharMap;
486 /* watch out; assumes that v is void * -PL */
487 #define ALIGN(v,type) ((void *)(((uintptr_t)(v) + fc_alignof(type) - 1) & ~(fc_alignof(type) - 1)))
494 FcCacheRead (FcConfig *config);
497 FcDirCacheWrite (FcFontSet *set, FcStrSet * dirs, const FcChar8 *dir, FcConfig *config);
500 FcDirCacheConsume (FILE *file, FcFontSet *set, FcStrSet *dirs,
501 const FcChar8 *dir, char *dirname);
504 FcDirCacheMap (int fd, off_t size);
507 FcDirCacheUnmap (FcCache *cache);
510 FcDirCacheRead (FcFontSet * set, FcStrSet * dirs, const FcChar8 *dir, FcConfig *config);
515 FcConfigAddConfigDir (FcConfig *config,
519 FcConfigAddFontDir (FcConfig *config,
523 FcConfigAddDir (FcConfig *config,
527 FcConfigAddCacheDir (FcConfig *config,
531 FcConfigGetCacheDirs (FcConfig *config);
534 FcConfigAddConfigFile (FcConfig *config,
538 FcConfigAddBlank (FcConfig *config,
542 FcConfigAddEdit (FcConfig *config,
548 FcConfigSetFonts (FcConfig *config,
553 FcConfigCompareValue (const FcValue *m,
558 FcConfigGlobAdd (FcConfig *config,
563 FcConfigAcceptFilename (FcConfig *config,
564 const FcChar8 *filename);
567 FcConfigPatternsAdd (FcConfig *config,
572 FcConfigAcceptFont (FcConfig *config,
573 const FcPattern *font);
576 FcConfigModifiedTime (FcConfig *config);
579 FcConfigAddCache (FcConfig *config, FcCache *cache);
583 FcAlignSize (intptr_t size);
586 FcSerializeCreate (void);
589 FcSerializeDestroy (FcSerialize *serialize);
592 FcSerializeAlloc (FcSerialize *serialize, const void *object, int size);
595 FcSerializeReserve (FcSerialize *serialize, int size);
598 FcSerializeOffset (FcSerialize *serialize, const void *object);
601 FcSerializePtr (FcSerialize *serialize, const void *object);
604 FcLangSetSerializeAlloc (FcSerialize *serialize, const FcLangSet *l);
607 FcLangSetSerialize(FcSerialize *serialize, const FcLangSet *l);
611 FcLangCharSetPopulate (void);
614 FcCharSetFreeze (FcCharSet *cs);
617 FcCharSetThawAll (void);
620 FcNameUnparseCharSet (FcStrBuf *buf, const FcCharSet *c);
623 FcNameParseCharSet (FcChar8 *string);
626 FcCharSetFindLeafCreate (FcCharSet *fcs, FcChar32 ucs4);
629 FcCharSetSerializeAlloc(FcSerialize *serialize, const FcCharSet *cs);
632 FcCharSetSerialize(FcSerialize *serialize, const FcCharSet *cs);
635 FcCharSetGetNumbers(const FcCharSet *c);
639 FcValueListPrint (const FcValueListPtr l);
642 FcLangSetPrint (const FcLangSet *ls);
648 FcTestPrint (const FcTest *test);
651 FcExprPrint (const FcExpr *expr);
654 FcEditPrint (const FcEdit *edit);
657 FcSubstPrint (const FcSubst *subst);
660 FcCharSetPrint (const FcCharSet *c);
662 extern int FcDebugVal;
665 FcDebug (void) { return FcDebugVal; }
672 FcGetDefaultLang (void);
677 FcFileIsDir (const FcChar8 *file);
680 FcFileScanConfig (FcFontSet *set,
688 FcDirScanConfig (FcFontSet *set,
701 FcFreeTypeIsExclusiveLang (const FcChar8 *lang);
704 FcFreeTypeHasLang (FcPattern *pattern, const FcChar8 *lang);
707 FcFreeTypeUcs4ToPrivate (FcChar32 ucs4, const FcCharMap *map);
710 FcFreeTypePrivateToUcs4 (FcChar32 private, const FcCharMap *map);
713 FcFreeTypeGetPrivateMap (FT_Encoding encoding);
718 FcFontSetSerializeAlloc (FcSerialize *serialize, const FcFontSet *s);
721 FcFontSetSerialize (FcSerialize *serialize, const FcFontSet * s);
725 FcConfigparse (void);
731 FcConfigerror (char *fmt, ...);
734 FcConfigSaveField (const char *field);
737 FcTestDestroy (FcTest *test);
740 FcExprCreateInteger (int i);
743 FcExprCreateDouble (double d);
746 FcExprCreateString (const FcChar8 *s);
749 FcExprCreateMatrix (const FcMatrix *m);
752 FcExprCreateBool (FcBool b);
755 FcExprCreateNil (void);
758 FcExprCreateField (const char *field);
761 FcExprCreateConst (const FcChar8 *constant);
764 FcExprCreateOp (FcExpr *left, FcOp op, FcExpr *right);
767 FcExprDestroy (FcExpr *e);
770 FcEditDestroy (FcEdit *e);
778 FcMemAlloc (int kind, int size);
781 FcMemFree (int kind, int size);
785 FcFreeTypeLangSet (const FcCharSet *charset,
786 const FcChar8 *exclusiveLang);
789 FcLangCompare (const FcChar8 *s1, const FcChar8 *s2);
792 FcCharSetForLang (const FcChar8 *lang);
795 FcLangSetPromote (const FcChar8 *lang);
798 FcNameParseLangSet (const FcChar8 *string);
801 FcNameUnparseLangSet (FcStrBuf *buf, const FcLangSet *ls);
806 FcListPatternMatchAny (const FcPattern *p,
807 const FcPattern *font);
814 * NOTE -- this ordering is part of the cache file format.
815 * It must also match the ordering in fcname.c
818 #define FC_FAMILY_OBJECT 1
819 #define FC_FAMILYLANG_OBJECT 2
820 #define FC_STYLE_OBJECT 3
821 #define FC_STYLELANG_OBJECT 4
822 #define FC_FULLNAME_OBJECT 5
823 #define FC_FULLNAMELANG_OBJECT 6
824 #define FC_SLANT_OBJECT 7
825 #define FC_WEIGHT_OBJECT 8
826 #define FC_WIDTH_OBJECT 9
827 #define FC_SIZE_OBJECT 10
828 #define FC_ASPECT_OBJECT 11
829 #define FC_PIXEL_SIZE_OBJECT 12
830 #define FC_SPACING_OBJECT 13
831 #define FC_FOUNDRY_OBJECT 14
832 #define FC_ANTIALIAS_OBJECT 15
833 #define FC_HINT_STYLE_OBJECT 16
834 #define FC_HINTING_OBJECT 17
835 #define FC_VERTICAL_LAYOUT_OBJECT 18
836 #define FC_AUTOHINT_OBJECT 19
837 #define FC_GLOBAL_ADVANCE_OBJECT 20
838 #define FC_FILE_OBJECT 21
839 #define FC_INDEX_OBJECT 22
840 #define FC_RASTERIZER_OBJECT 23
841 #define FC_OUTLINE_OBJECT 24
842 #define FC_SCALABLE_OBJECT 25
843 #define FC_DPI_OBJECT 26
844 #define FC_RGBA_OBJECT 27
845 #define FC_SCALE_OBJECT 28
846 #define FC_MINSPACE_OBJECT 29
847 #define FC_CHAR_WIDTH_OBJECT 30
848 #define FC_CHAR_HEIGHT_OBJECT 31
849 #define FC_MATRIX_OBJECT 32
850 #define FC_CHARSET_OBJECT 33
851 #define FC_LANG_OBJECT 34
852 #define FC_FONTVERSION_OBJECT 35
853 #define FC_CAPABILITY_OBJECT 36
854 #define FC_FONTFORMAT_OBJECT 37
855 #define FC_EMBOLDEN_OBJECT 38
856 #define FC_EMBEDDED_BITMAP_OBJECT 39
859 FcNameBool (const FcChar8 *v, FcBool *result);
862 FcObjectValidType (FcObject object, FcType type);
865 FcObjectFromName (const char * name);
868 FcObjectName (FcObject object);
876 #define FcObjectCompare(a, b) ((int) a - (int) b)
881 FcValueCanonicalize (const FcValue *v);
884 FcValueListDestroy (FcValueListPtr l);
887 FcPatternObjectFindElt (const FcPattern *p, FcObject object);
890 FcPatternObjectInsertElt (FcPattern *p, FcObject object);
893 FcPatternObjectAddWithBinding (FcPattern *p,
896 FcValueBinding binding,
900 FcPatternObjectAdd (FcPattern *p, FcObject object, FcValue value, FcBool append);
903 FcPatternObjectAddWeak (FcPattern *p, FcObject object, FcValue value, FcBool append);
906 FcPatternObjectGet (const FcPattern *p, FcObject object, int id, FcValue *v);
909 FcPatternObjectDel (FcPattern *p, FcObject object);
912 FcPatternObjectRemove (FcPattern *p, FcObject object, int id);
915 FcPatternObjectAddInteger (FcPattern *p, FcObject object, int i);
918 FcPatternObjectAddDouble (FcPattern *p, FcObject object, double d);
921 FcPatternObjectAddString (FcPattern *p, FcObject object, const FcChar8 *s);
924 FcPatternObjectAddMatrix (FcPattern *p, FcObject object, const FcMatrix *s);
927 FcPatternObjectAddCharSet (FcPattern *p, FcObject object, const FcCharSet *c);
930 FcPatternObjectAddBool (FcPattern *p, FcObject object, FcBool b);
933 FcPatternObjectAddLangSet (FcPattern *p, FcObject object, const FcLangSet *ls);
936 FcPatternObjectGetInteger (const FcPattern *p, FcObject object, int n, int *i);
939 FcPatternObjectGetDouble (const FcPattern *p, FcObject object, int n, double *d);
942 FcPatternObjectGetString (const FcPattern *p, FcObject object, int n, FcChar8 ** s);
945 FcPatternObjectGetMatrix (const FcPattern *p, FcObject object, int n, FcMatrix **s);
948 FcPatternObjectGetCharSet (const FcPattern *p, FcObject object, int n, FcCharSet **c);
951 FcPatternObjectGetBool (const FcPattern *p, FcObject object, int n, FcBool *b);
954 FcPatternObjectGetLangSet (const FcPattern *p, FcObject object, int n, FcLangSet **ls);
957 FcPatternFini (void);
960 FcPatternAppend (FcPattern *p, FcPattern *s);
963 FcStrStaticName (const FcChar8 *name);
966 FcStringHash (const FcChar8 *s);
969 FcPatternSerializeAlloc (FcSerialize *serialize, const FcPattern *pat);
972 FcPatternSerialize (FcSerialize *serialize, const FcPattern *pat);
975 FcValueListSerializeAlloc (FcSerialize *serialize, const FcValueList *pat);
978 FcValueListSerialize (FcSerialize *serialize, const FcValueList *pat);
984 extern const FcMatrix FcIdentityMatrix;
987 FcMatrixFree (FcMatrix *mat);
991 FcStrSetSort (FcStrSet * set);
994 FcStrPlus (const FcChar8 *s1, const FcChar8 *s2);
997 FcStrFree (FcChar8 *s);
1000 FcStrBufInit (FcStrBuf *buf, FcChar8 *init, int size);
1003 FcStrBufDestroy (FcStrBuf *buf);
1006 FcStrBufDone (FcStrBuf *buf);
1009 FcStrBufChar (FcStrBuf *buf, FcChar8 c);
1012 FcStrBufString (FcStrBuf *buf, const FcChar8 *s);
1015 FcStrBufData (FcStrBuf *buf, const FcChar8 *s, int len);
1018 FcStrCmpIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2);
1021 FcStrContainsIgnoreBlanksAndCase (const FcChar8 *s1, const FcChar8 *s2);
1024 FcStrContainsIgnoreCase (const FcChar8 *s1, const FcChar8 *s2);
1027 FcStrUsesHome (const FcChar8 *s);
1030 FcStrLastSlash (const FcChar8 *path);
1033 FcStrHashIgnoreCase (const FcChar8 *s);
1036 FcStrCanonFilename (const FcChar8 *s);
1039 FcStrSerializeAlloc (FcSerialize *serialize, const FcChar8 *str);
1042 FcStrSerialize (FcSerialize *serialize, const FcChar8 *str);
1044 #endif /* _FC_INT_H_ */