1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
// Copyright 2013 The Servo Project Developers. See the LICENSE
// file at the top-level directory of this distribution.
//
// Licensed under the the MIT license. This file may not be
// copied, modified, or distributed except according to those terms.

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

use std::os::raw::{c_char, c_double, c_int, c_uchar, c_uint, c_ushort, c_void};

pub use dlib::ffi_dispatch;

#[cfg(feature = "dlopen")]
pub mod statics {
    use super::Fc;
    use once_cell::sync::Lazy;

    static SONAME: &str = if cfg!(windows) {
        "libfontconfig.dll"
    } else if cfg!(target_vendor = "apple") {
        "libfontconfig.dylib.1"
    } else {
        "libfontconfig.so.1"
    };

    pub static LIB_RESULT: Lazy<Result<Fc, dlib::DlError>> =
        Lazy::new(|| unsafe { Fc::open(SONAME) });

    pub static LIB: Lazy<&'static Fc> = Lazy::new(|| LIB_RESULT.as_ref().unwrap());
}

pub type FcChar8 = c_uchar;
pub type FcChar16 = c_ushort;
pub type FcChar32 = c_uint;
pub type FcBool = c_int;

pub type enum__FcType = c_uint;
pub const FcTypeVoid: u32 = 0_u32;
pub const FcTypeInteger: u32 = 1_u32;
pub const FcTypeDouble: u32 = 2_u32;
pub const FcTypeString: u32 = 3_u32;
pub const FcTypeBool: u32 = 4_u32;
pub const FcTypeMatrix: u32 = 5_u32;
pub const FcTypeCharSet: u32 = 6_u32;
pub const FcTypeFTFace: u32 = 7_u32;
pub const FcTypeLangSet: u32 = 8_u32;

pub type FcType = enum__FcType;

pub mod constants {
    use std::ffi::CStr;

    use cstr::cstr;

    use super::c_int;

    pub const FC_WEIGHT_THIN: c_int = 0;
    pub const FC_WEIGHT_EXTRALIGHT: c_int = 40;
    pub const FC_WEIGHT_ULTRALIGHT: c_int = FC_WEIGHT_EXTRALIGHT;
    pub const FC_WEIGHT_LIGHT: c_int = 50;
    pub const FC_WEIGHT_BOOK: c_int = 75;
    pub const FC_WEIGHT_REGULAR: c_int = 80;
    pub const FC_WEIGHT_NORMAL: c_int = FC_WEIGHT_REGULAR;
    pub const FC_WEIGHT_MEDIUM: c_int = 100;
    pub const FC_WEIGHT_DEMIBOLD: c_int = 180;
    pub const FC_WEIGHT_SEMIBOLD: c_int = FC_WEIGHT_DEMIBOLD;
    pub const FC_WEIGHT_BOLD: c_int = 200;
    pub const FC_WEIGHT_EXTRABOLD: c_int = 205;
    pub const FC_WEIGHT_ULTRABOLD: c_int = FC_WEIGHT_EXTRABOLD;
    pub const FC_WEIGHT_BLACK: c_int = 210;
    pub const FC_WEIGHT_HEAVY: c_int = FC_WEIGHT_BLACK;
    pub const FC_WEIGHT_EXTRABLACK: c_int = 215;
    pub const FC_WEIGHT_ULTRABLACK: c_int = FC_WEIGHT_EXTRABLACK;

    pub const FC_SLANT_ROMAN: c_int = 0;
    pub const FC_SLANT_ITALIC: c_int = 100;
    pub const FC_SLANT_OBLIQUE: c_int = 110;

    pub const FC_WIDTH_ULTRACONDENSED: c_int = 50;
    pub const FC_WIDTH_EXTRACONDENSED: c_int = 63;
    pub const FC_WIDTH_CONDENSED: c_int = 75;
    pub const FC_WIDTH_SEMICONDENSED: c_int = 87;
    pub const FC_WIDTH_NORMAL: c_int = 100;
    pub const FC_WIDTH_SEMIEXPANDED: c_int = 113;
    pub const FC_WIDTH_EXPANDED: c_int = 125;
    pub const FC_WIDTH_EXTRAEXPANDED: c_int = 150;
    pub const FC_WIDTH_ULTRAEXPANDED: c_int = 200;

    pub const FC_PROPORTIONAL: c_int = 0;
    pub const FC_DUAL: c_int = 90;
    pub const FC_MONO: c_int = 100;
    pub const FC_CHARCELL: c_int = 110;

    pub const FC_RGBA_UNKNOWN: c_int = 0;
    pub const FC_RGBA_RGB: c_int = 1;
    pub const FC_RGBA_BGR: c_int = 2;
    pub const FC_RGBA_VRGB: c_int = 3;
    pub const FC_RGBA_VBGR: c_int = 4;
    pub const FC_RGBA_NONE: c_int = 5;

    pub const FC_HINT_NONE: c_int = 0;
    pub const FC_HINT_SLIGHT: c_int = 1;
    pub const FC_HINT_MEDIUM: c_int = 2;
    pub const FC_HINT_FULL: c_int = 3;

    pub const FC_LCD_NONE: c_int = 0;
    pub const FC_LCD_DEFAULT: c_int = 1;
    pub const FC_LCD_LIGHT: c_int = 2;
    pub const FC_LCD_LEGACY: c_int = 3;

    pub const FC_CHARSET_MAP_SIZE: c_int = 8;
    pub const FC_CHARSET_DONE: u32 = u32::MAX;
    pub const FC_UTF8_MAX_LEN: c_int = 6;

    pub const FC_FAMILY: &CStr = cstr!("family");
    pub const FC_STYLE: &CStr = cstr!("style");
    pub const FC_SLANT: &CStr = cstr!("slant");
    pub const FC_WEIGHT: &CStr = cstr!("weight");
    pub const FC_SIZE: &CStr = cstr!("size");
    pub const FC_ASPECT: &CStr = cstr!("aspect");
    pub const FC_PIXEL_SIZE: &CStr = cstr!("pixelsize");
    pub const FC_SPACING: &CStr = cstr!("spacing");
    pub const FC_FOUNDRY: &CStr = cstr!("foundry");
    pub const FC_ANTIALIAS: &CStr = cstr!("antialias");
    pub const FC_HINTING: &CStr = cstr!("hinting");
    pub const FC_HINT_STYLE: &CStr = cstr!("hintstyle");
    pub const FC_VERTICAL_LAYOUT: &CStr = cstr!("verticallayout");
    pub const FC_AUTOHINT: &CStr = cstr!("autohint");
    pub const FC_GLOBAL_ADVANCE: &CStr = cstr!("globaladvance");
    pub const FC_WIDTH: &CStr = cstr!("width");
    pub const FC_FILE: &CStr = cstr!("file");
    pub const FC_INDEX: &CStr = cstr!("index");
    pub const FC_FT_FACE: &CStr = cstr!("ftface");
    pub const FC_RASTERIZER: &CStr = cstr!("rasterizer");
    pub const FC_OUTLINE: &CStr = cstr!("outline");
    pub const FC_SCALABLE: &CStr = cstr!("scalable");
    pub const FC_COLOR: &CStr = cstr!("color");
    pub const FC_VARIABLE: &CStr = cstr!("variable");
    pub const FC_SCALE: &CStr = cstr!("scale");
    pub const FC_SYMBOL: &CStr = cstr!("symbol");
    pub const FC_DPI: &CStr = cstr!("dpi");
    pub const FC_RGBA: &CStr = cstr!("rgba");
    pub const FC_MINSPACE: &CStr = cstr!("minspace");
    pub const FC_SOURCE: &CStr = cstr!("source");
    pub const FC_CHARSET: &CStr = cstr!("charset");
    pub const FC_LANG: &CStr = cstr!("lang");
    pub const FC_FONTVERSION: &CStr = cstr!("fontversion");
    pub const FC_FULLNAME: &CStr = cstr!("fullname");
    pub const FC_FAMILYLANG: &CStr = cstr!("familylang");
    pub const FC_STYLELANG: &CStr = cstr!("stylelang");
    pub const FC_FULLNAMELANG: &CStr = cstr!("fullnamelang");
    pub const FC_CAPABILITY: &CStr = cstr!("capability");
    pub const FC_FONTFORMAT: &CStr = cstr!("fontformat");
    pub const FC_EMBOLDEN: &CStr = cstr!("embolden");
    pub const FC_EMBEDDED_BITMAP: &CStr = cstr!("embeddedbitmap");
    pub const FC_DECORATIVE: &CStr = cstr!("decorative");
    pub const FC_LCD_FILTER: &CStr = cstr!("lcdfilter");
    pub const FC_FONT_FEATURES: &CStr = cstr!("fontfeatures");
    pub const FC_FONT_VARIATIONS: &CStr = cstr!("fontvariations");
    pub const FC_NAMELANG: &CStr = cstr!("namelang");
    pub const FC_PRGNAME: &CStr = cstr!("prgname");
    pub const FC_HASH: &CStr = cstr!("hash");
    pub const FC_POSTSCRIPT_NAME: &CStr = cstr!("postscriptname");
    pub const FC_FONT_HAS_HINT: &CStr = cstr!("fonthashint");
    pub const FC_CACHE_SUFFIX: &CStr = cstr!(".cache-");
    pub const FC_DIR_CACHE_FILE: &CStr = cstr!("fonts.cache-");
    pub const FC_USER_CACHE_FILE: &CStr = cstr!(".fonts.cache-");
    pub const FC_CHARWIDTH: &CStr = cstr!("charwidth");
    pub const FC_CHAR_WIDTH: &CStr = cstr!("charwidth");
    pub const FC_CHAR_HEIGHT: &CStr = cstr!("charheight");
    pub const FC_MATRIX: &CStr = cstr!("matrix");
    pub const FC_ORDER: &CStr = cstr!("order");
}

#[repr(C)]
#[derive(Copy, Clone)]
pub struct struct__FcMatrix {
    pub xx: c_double,
    pub xy: c_double,
    pub yx: c_double,
    pub yy: c_double,
}

pub type FcMatrix = struct__FcMatrix;

pub type struct__FcCharSet = c_void;

pub type FcCharSet = struct__FcCharSet;

#[repr(C)]
#[allow(missing_copy_implementations)]
pub struct struct__FcObjectType {
    pub object: *mut c_char,
    pub _type: FcType,
}

pub type FcObjectType = struct__FcObjectType;

#[repr(C)]
#[allow(missing_copy_implementations)]
pub struct struct__FcConstant {
    pub name: *mut FcChar8,
    pub object: *mut c_char,
    pub value: c_int,
}

pub type FcConstant = struct__FcConstant;

pub type enum__FcResult = c_uint;
pub const FcResultMatch: u32 = 0_u32;
pub const FcResultNoMatch: u32 = 1_u32;
pub const FcResultTypeMismatch: u32 = 2_u32;
pub const FcResultNoId: u32 = 3_u32;
pub const FcResultOutOfMemory: u32 = 4_u32;

pub type FcResult = enum__FcResult;

pub type struct__FcPattern = c_void;

pub type FcPattern = struct__FcPattern;

pub type struct__FcLangSet = c_void;

pub type FcLangSet = struct__FcLangSet;

#[repr(C)]
#[allow(missing_copy_implementations)]
pub struct struct__FcValue {
    pub _type: FcType,
    pub u: union_unnamed1,
}

pub type FcValue = struct__FcValue;

#[repr(C)]
#[allow(missing_copy_implementations)]
pub struct struct__FcFontSet {
    pub nfont: c_int,
    pub sfont: c_int,
    pub fonts: *mut *mut FcPattern,
}

pub type FcFontSet = struct__FcFontSet;

#[repr(C)]
#[allow(missing_copy_implementations)]
pub struct struct__FcObjectSet {
    pub nobject: c_int,
    pub sobject: c_int,
    pub objects: *mut *mut c_char,
}

pub type FcObjectSet = struct__FcObjectSet;

pub type enum__FcMatchKind = c_uint;
pub const FcMatchPattern: u32 = 0_u32;
pub const FcMatchFont: u32 = 1_u32;
pub const FcMatchScan: u32 = 2_u32;

pub type FcMatchKind = enum__FcMatchKind;

pub type enum__FcLangResult = c_uint;
pub const FcLangEqual: u32 = 0_u32;
pub const FcLangDifferentCountry: u32 = 1_u32;
pub const FcLangDifferentTerritory: u32 = 1_u32;
pub const FcLangDifferentLang: u32 = 2_u32;

pub type FcLangResult = enum__FcLangResult;

pub type enum__FcSetName = c_uint;
pub const FcSetSystem: u32 = 0_u32;
pub const FcSetApplication: u32 = 1_u32;

pub type FcSetName = enum__FcSetName;

pub type struct__FcAtomic = c_void;

pub type FcAtomic = struct__FcAtomic;

pub type FcEndian = c_uint;
pub const FcEndianBig: u32 = 0_u32;
pub const FcEndianLittle: u32 = 1_u32;

pub type struct__FcConfig = c_void;

pub type FcConfig = struct__FcConfig;

pub type struct__FcGlobalCache = c_void;

pub type FcFileCache = struct__FcGlobalCache;

pub type struct__FcBlanks = c_void;

pub type FcBlanks = struct__FcBlanks;

pub type struct__FcStrList = c_void;

pub type FcStrList = struct__FcStrList;

pub type struct__FcStrSet = c_void;

pub type FcStrSet = struct__FcStrSet;

pub type struct__FcCache = c_void;

pub type FcCache = struct__FcCache;

pub type union_unnamed1 = c_void;

dlib::external_library!(Fc, "fontconfig",
    functions:
        fn FcBlanksCreate() -> *mut FcBlanks,

        fn FcBlanksDestroy(*mut FcBlanks) -> (),

        fn FcBlanksAdd(*mut FcBlanks, FcChar32) -> FcBool,

        fn FcBlanksIsMember(*mut FcBlanks, FcChar32) -> FcBool,

        fn FcCacheDir(*mut FcCache) -> *const FcChar8,

        fn FcCacheCopySet(*const FcCache) -> *mut FcFontSet,

        fn FcCacheSubdir(*const FcCache, c_int) -> *const FcChar8,

        fn FcCacheNumSubdir(*const FcCache) -> c_int,

        fn FcCacheNumFont(*const FcCache) -> c_int,

        fn FcDirCacheUnlink(*const FcChar8, *mut FcConfig) -> FcBool,

        fn FcDirCacheValid(*const FcChar8) -> FcBool,

        fn FcConfigHome() -> *mut FcChar8,

        fn FcConfigEnableHome(FcBool) -> FcBool,

        fn FcConfigFilename(*const FcChar8) -> *mut FcChar8,

        fn FcConfigCreate() -> *mut FcConfig,

        fn FcConfigReference(*mut FcConfig) -> *mut FcConfig,

        fn FcConfigDestroy(*mut FcConfig) -> (),

        fn FcConfigSetCurrent(*mut FcConfig) -> FcBool,

        fn FcConfigGetCurrent() -> *mut FcConfig,

        fn FcConfigUptoDate(*mut FcConfig) -> FcBool,

        fn FcConfigBuildFonts(*mut FcConfig) -> FcBool,

        fn FcConfigGetFontDirs(*mut FcConfig) -> *mut FcStrList,

        fn FcConfigGetConfigDirs(*mut FcConfig) -> *mut FcStrList,

        fn FcConfigGetConfigFiles(*mut FcConfig) -> *mut FcStrList,

        fn FcConfigGetCache(*mut FcConfig) -> *mut FcChar8,

        fn FcConfigGetBlanks(*mut FcConfig) -> *mut FcBlanks,

        fn FcConfigGetCacheDirs(*const FcConfig) -> *mut FcStrList,

        fn FcConfigGetRescanInterval(*mut FcConfig) -> c_int,

        fn FcConfigSetRescanInterval(*mut FcConfig, c_int) -> FcBool,

        fn FcConfigGetFonts(*mut FcConfig, FcSetName) -> *mut FcFontSet,

        fn FcConfigAppFontAddFile(*mut FcConfig, *const FcChar8) -> FcBool,

        fn FcConfigAppFontAddDir(*mut FcConfig, *const FcChar8) -> FcBool,

        fn FcConfigAppFontClear(*mut FcConfig) -> (),

        fn FcConfigSubstituteWithPat(
            *mut FcConfig,
            *mut FcPattern,
            *mut FcPattern,
            FcMatchKind
        ) -> FcBool,

        fn FcConfigSubstitute(
            *mut FcConfig,
            *mut FcPattern,
            FcMatchKind
        ) -> FcBool,

        fn FcCharSetCreate() -> *mut FcCharSet,

        fn FcCharSetNew() -> *mut FcCharSet,

        fn FcCharSetDestroy(*mut FcCharSet) -> (),

        fn FcCharSetAddChar(*mut FcCharSet, FcChar32) -> FcBool,

        fn FcCharSetDelChar(*mut FcCharSet, FcChar32) -> FcBool,

        fn FcCharSetCopy(*mut FcCharSet) -> *mut FcCharSet,

        fn FcCharSetEqual(*const FcCharSet, *const FcCharSet) -> FcBool,

        fn FcCharSetIntersect(*const FcCharSet, *const FcCharSet) -> *mut FcCharSet,

        fn FcCharSetUnion(*const FcCharSet, *const FcCharSet) -> *mut FcCharSet,

        fn FcCharSetSubtract(*const FcCharSet, *const FcCharSet) -> *mut FcCharSet,

        fn FcCharSetMerge(*mut FcCharSet, *const FcCharSet, *mut FcBool) -> FcBool,

        fn FcCharSetHasChar(*const FcCharSet, FcChar32) -> FcBool,

        fn FcCharSetCount(*const FcCharSet) -> FcChar32,

        fn FcCharSetIntersectCount(*const FcCharSet, *const FcCharSet) -> FcChar32,

        fn FcCharSetSubtractCount(*const FcCharSet, *const FcCharSet) -> FcChar32,

        fn FcCharSetIsSubset(*const FcCharSet, *const FcCharSet) -> FcBool,

        fn FcCharSetFirstPage(
            *const FcCharSet,
            *mut FcChar32,
            *mut FcChar32
        ) -> FcChar32,

        fn FcCharSetNextPage(
            *const FcCharSet,
            *mut FcChar32,
            *mut FcChar32
        ) -> FcChar32,

        fn FcCharSetCoverage(
            *const FcCharSet,
            FcChar32,
            *mut FcChar32
        ) -> FcChar32,

        fn FcValuePrint(FcValue) -> (),

        fn FcPatternPrint(*const FcPattern) -> (),

        fn FcFontSetPrint(*mut FcFontSet) -> (),

        fn FcDefaultSubstitute(*mut FcPattern) -> (),

        fn FcFileIsDir(*const FcChar8) -> FcBool,

        fn FcFileScan(
            *mut FcFontSet,
            *mut FcStrSet,
            *mut FcFileCache,
            *mut FcBlanks,
            *const FcChar8,
            FcBool
        ) -> FcBool,

        fn FcDirScan(
            *mut FcFontSet,
            *mut FcStrSet,
            *mut FcFileCache,
            *mut FcBlanks,
            *const FcChar8,
            FcBool
        ) -> FcBool,

        fn FcDirSave(*mut FcFontSet, *const FcStrSet, *mut FcChar8) -> FcBool,

        fn FcDirCacheLoad(
            *const FcChar8,
            *mut FcConfig,
            *mut *mut FcChar8
        ) -> *mut FcCache,

        fn FcDirCacheRead(
            *const FcChar8,
            FcBool,
            *mut FcConfig
        ) -> *mut FcCache,

        // fn FcDirCacheLoadFile(*mut FcChar8, *mut struct_stat) -> *mut FcCache,

        fn FcDirCacheUnload(*mut FcCache) -> (),

        fn FcFreeTypeQuery(
            *const FcChar8,
            c_int,
            *mut FcBlanks,
            *mut c_int
        ) -> *mut FcPattern,

        fn FcFontSetCreate() -> *mut FcFontSet,

        fn FcFontSetDestroy(*mut FcFontSet) -> (),

        fn FcFontSetAdd(*mut FcFontSet, *mut FcPattern) -> FcBool,

        fn FcInitLoadConfig() -> *mut FcConfig,

        fn FcInitLoadConfigAndFonts() -> *mut FcConfig,

        fn FcInit() -> FcBool,

        fn FcFini() -> (),

        fn FcGetVersion() -> c_int,

        fn FcInitReinitialize() -> FcBool,

        fn FcInitBringUptoDate() -> FcBool,

        fn FcGetLangs() -> *mut FcStrSet,

        fn FcLangGetCharSet(*const FcChar8) -> *mut FcCharSet,

        fn FcLangSetCreate() -> *mut FcLangSet,

        fn FcLangSetDestroy(*mut FcLangSet) -> (),

        fn FcLangSetCopy(*const FcLangSet) -> *mut FcLangSet,

        fn FcLangSetAdd(*mut FcLangSet, *const FcChar8) -> FcBool,

        fn FcLangSetHasLang(*const FcLangSet, *const FcChar8) -> FcLangResult,

        fn FcLangSetCompare(*const FcLangSet, *const FcLangSet) -> FcLangResult,

        fn FcLangSetContains(*const FcLangSet, *const FcLangSet) -> FcBool,

        fn FcLangSetEqual(*const FcLangSet, *const FcLangSet) -> FcBool,

        fn FcLangSetHash(*const FcLangSet) -> FcChar32,

        fn FcLangSetGetLangs(*const FcLangSet) -> *mut FcStrSet,

        fn FcObjectSetCreate() -> *mut FcObjectSet,

        fn FcObjectSetAdd(*mut FcObjectSet, *const c_char) -> FcBool,

        fn FcObjectSetDestroy(*mut FcObjectSet) -> (),

        // fn FcObjectSetVaBuild(*mut c_char, *mut __va_list_tag) -> *mut FcObjectSet,

        fn FcFontSetList(
            *mut FcConfig,
            *mut *mut FcFontSet,
            c_int,
            *mut FcPattern,
            *mut FcObjectSet
        ) -> *mut FcFontSet,

        fn FcFontList(
            *mut FcConfig,
            *mut FcPattern,
            *mut FcObjectSet
        ) -> *mut FcFontSet,

        fn FcAtomicCreate(*const FcChar8) -> *mut FcAtomic,

        fn FcAtomicLock(*mut FcAtomic) -> FcBool,

        fn FcAtomicNewFile(*mut FcAtomic) -> *mut FcChar8,

        fn FcAtomicOrigFile(*mut FcAtomic) -> *mut FcChar8,

        fn FcAtomicReplaceOrig(*mut FcAtomic) -> FcBool,

        fn FcAtomicDeleteNew(*mut FcAtomic) -> (),

        fn FcAtomicUnlock(*mut FcAtomic) -> (),

        fn FcAtomicDestroy(*mut FcAtomic) -> (),

        fn FcFontSetMatch(
            *mut FcConfig,
            *mut *mut FcFontSet,
            c_int,
            *mut FcPattern,
            *mut FcResult
        ) -> *mut FcPattern,

        fn FcFontMatch(
            *mut FcConfig,
            *mut FcPattern,
            *mut FcResult
        ) -> *mut FcPattern,

        fn FcFontRenderPrepare(
            *mut FcConfig,
            *mut FcPattern,
            *mut FcPattern
        ) -> *mut FcPattern,

        fn FcFontSetSort(
            *mut FcConfig,
            *mut *mut FcFontSet,
            c_int,
            *mut FcPattern,
            FcBool,
            *mut *mut FcCharSet,
            *mut FcResult
        ) -> *mut FcFontSet,

        fn FcFontSort(
            *mut FcConfig,
            *mut FcPattern,
            FcBool,
            *mut *mut FcCharSet,
            *mut FcResult
        ) -> *mut FcFontSet,

        fn FcFontSetSortDestroy(*mut FcFontSet) -> (),

        fn FcMatrixCopy(*const FcMatrix) -> *mut FcMatrix,

        fn FcMatrixEqual(*const FcMatrix, *const FcMatrix) -> FcBool,

        fn FcMatrixMultiply(*mut FcMatrix, *const FcMatrix, *const FcMatrix) -> (),

        fn FcMatrixRotate(*mut FcMatrix, c_double, c_double) -> (),

        fn FcMatrixScale(*mut FcMatrix, c_double, c_double) -> (),

        fn FcMatrixShear(*mut FcMatrix, c_double, c_double) -> (),

        fn FcNameRegisterObjectTypes(*const FcObjectType, c_int) -> FcBool,

        fn FcNameUnregisterObjectTypes(*const FcObjectType, c_int) -> FcBool,

        fn FcNameGetObjectType(*const c_char) -> *const FcObjectType,

        fn FcNameRegisterConstants(*const FcConstant, c_int) -> FcBool,

        fn FcNameUnregisterConstants(*const FcConstant, c_int) -> FcBool,

        fn FcNameGetConstant(*mut FcChar8) -> *const FcConstant,

        fn FcNameConstant(*mut FcChar8, *mut c_int) -> FcBool,

        fn FcNameParse(*const FcChar8) -> *mut FcPattern,

        fn FcNameUnparse(*mut FcPattern) -> *mut FcChar8,

        fn FcPatternCreate() -> *mut FcPattern,

        fn FcPatternDuplicate(*const FcPattern) -> *mut FcPattern,

        fn FcPatternReference(*mut FcPattern) -> (),

        fn FcPatternFilter(*mut FcPattern, *const FcObjectSet) -> *mut FcPattern,

        fn FcValueDestroy(FcValue) -> (),

        fn FcValueEqual(FcValue, FcValue) -> FcBool,

        fn FcValueSave(FcValue) -> FcValue,

        fn FcPatternDestroy(*mut FcPattern) -> (),

        fn FcPatternEqual(*const FcPattern, *const FcPattern) -> FcBool,

        fn FcPatternEqualSubset(
            *const FcPattern,
            *const FcPattern,
            *const FcObjectSet
        ) -> FcBool,

        fn FcPatternHash(*const FcPattern) -> FcChar32,

        fn FcPatternAdd(
            *mut FcPattern,
            *const c_char,
            FcValue,
            FcBool
        ) -> FcBool,

        fn FcPatternAddWeak(
            *mut FcPattern,
            *const c_char,
            FcValue,
            FcBool
        ) -> FcBool,

        fn FcPatternGet(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut FcValue
        ) -> FcResult,

        fn FcPatternDel(*mut FcPattern, *const c_char) -> FcBool,

        fn FcPatternRemove(*mut FcPattern, *const c_char, c_int) -> FcBool,

        fn FcPatternAddInteger(*mut FcPattern, *const c_char, c_int) -> FcBool,

        fn FcPatternAddDouble(*mut FcPattern, *const c_char, c_double) -> FcBool,

        fn FcPatternAddString(
            *mut FcPattern,
            *const c_char,
            *const FcChar8
        ) -> FcBool,

        fn FcPatternAddMatrix(
            *mut FcPattern,
            *const c_char,
            *const FcMatrix
        ) -> FcBool,

        fn FcPatternAddCharSet(
            *mut FcPattern,
            *const c_char,
            *const FcCharSet
        ) -> FcBool,

        fn FcPatternAddBool(*mut FcPattern, *const c_char, FcBool) -> FcBool,

        fn FcPatternAddLangSet(
            *mut FcPattern,
            *const c_char,
            *const FcLangSet
        ) -> FcBool,

        fn FcPatternGetInteger(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut c_int
        ) -> FcResult,

        fn FcPatternGetDouble(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut c_double
        ) -> FcResult,

        fn FcPatternGetString(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut *mut FcChar8
        ) -> FcResult,

        fn FcPatternGetMatrix(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut *mut FcMatrix
        ) -> FcResult,

        fn FcPatternGetCharSet(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut *mut FcCharSet
        ) -> FcResult,

        fn FcPatternGetBool(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut FcBool
        ) -> FcResult,

        fn FcPatternGetLangSet(
            *mut FcPattern,
            *const c_char,
            c_int,
            *mut *mut FcLangSet
        ) -> FcResult,

        // The last argument is a pointer to a FreeType Face object (`FT_Face *`)
        //
        // <https://freetype.org/freetype2/docs/reference/ft2-base_interface.html#ft_face>
        fn FcPatternGetFTFace(*mut FcPattern, *const c_char, c_int, *mut *mut c_void) -> FcResult,

        // fn FcPatternVaBuild(*mut FcPattern, *mut __va_list_tag) -> *mut FcPattern,

        fn FcPatternFormat(*mut FcPattern, *const FcChar8) -> *mut FcChar8,

        fn FcStrCopy(*const FcChar8) -> *mut FcChar8,

        fn FcStrCopyFilename(*const FcChar8) -> *mut FcChar8,

        fn FcStrPlus(*const FcChar8, *const FcChar8) -> *mut FcChar8,

        fn FcStrFree(*mut FcChar8) -> (),

        fn FcStrDowncase(*const FcChar8) -> *mut FcChar8,

        fn FcStrCmpIgnoreCase(*const FcChar8, *const FcChar8) -> c_int,

        fn FcStrCmp(*const FcChar8, *const FcChar8) -> c_int,

        fn FcStrStrIgnoreCase(*const FcChar8, *const FcChar8) -> *mut FcChar8,

        fn FcStrStr(*const FcChar8, *const FcChar8) -> *mut FcChar8,

        fn FcUtf8ToUcs4(*mut FcChar8, *mut FcChar32, c_int) -> c_int,

        fn FcUtf8Len(
            *mut FcChar8,
            c_int,
            *mut c_int,
            *mut c_int
        ) -> FcBool,

        fn FcUcs4ToUtf8(FcChar32, *mut FcChar8) -> c_int,

        fn FcUtf16ToUcs4(
            *mut FcChar8,
            FcEndian,
            *mut FcChar32,
            c_int
        ) -> c_int,

        fn FcUtf16Len(
            *mut FcChar8,
            FcEndian,
            c_int,
            *mut c_int,
            *mut c_int
        ) -> FcBool,

        fn FcStrDirname(*const FcChar8) -> *mut FcChar8,

        fn FcStrBasename(*const FcChar8) -> *mut FcChar8,

        fn FcStrSetCreate() -> *mut FcStrSet,

        fn FcStrSetMember(*mut FcStrSet, *const FcChar8) -> FcBool,

        fn FcStrSetEqual(*mut FcStrSet, *mut FcStrSet) -> FcBool,

        fn FcStrSetAdd(*mut FcStrSet, *const FcChar8) -> FcBool,

        fn FcStrSetAddFilename(*mut FcStrSet, *const FcChar8) -> FcBool,

        fn FcStrSetDel(*mut FcStrSet, *const FcChar8) -> FcBool,

        fn FcStrSetDestroy(*mut FcStrSet) -> (),

        fn FcStrListCreate(*mut FcStrSet) -> *mut FcStrList,

        fn FcStrListNext(*mut FcStrList) -> *mut FcChar8,

        fn FcStrListDone(*mut FcStrList) -> (),

        fn FcConfigParseAndLoad(
            *mut FcConfig,
            *const FcChar8,
            FcBool
        ) -> FcBool,

    varargs:
        fn FcPatternBuild(*mut FcPattern) -> *mut FcPattern,
        fn FcObjectSetBuild(*mut c_char) -> *mut FcObjectSet,
);