1 #include <stdarg.h>
2 #include <stdbool.h>
3 #include <stdint.h>
4 #include <stdlib.h>
5 
6 #define PREFIX_LEN 22
7 
8 #define PREFIX_X (22 << 22)
9 
10 #define PREFIX_Y (PREFIX_X + PREFIX_X)
11 
12 typedef int32_t PREFIX_NamedLenArray[PREFIX_LEN];
13 
14 typedef int32_t PREFIX_ValuedLenArray[22];
15 
16 enum PREFIX_AbsoluteFontWeight_Tag
17 #ifdef __cplusplus
18   : uint8_t
19 #endif // __cplusplus
20  {
21   Weight,
22   Normal,
23   Bold,
24 };
25 #ifndef __cplusplus
26 typedef uint8_t PREFIX_AbsoluteFontWeight_Tag;
27 #endif // __cplusplus
28 
29 typedef struct {
30   PREFIX_AbsoluteFontWeight_Tag tag;
31   float _0;
32 } PREFIX_Weight_Body;
33 
34 typedef union {
35   PREFIX_AbsoluteFontWeight_Tag tag;
36   PREFIX_Weight_Body weight;
37 } PREFIX_AbsoluteFontWeight;
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif // __cplusplus
42 
43 void root(PREFIX_NamedLenArray x, PREFIX_ValuedLenArray y, PREFIX_AbsoluteFontWeight z);
44 
45 #ifdef __cplusplus
46 } // extern "C"
47 #endif // __cplusplus
48