2 * Codepage data structure as generated by cptable.pl
9 #define CODEPAGE_MAGIC UINT64_C(0x51d21eb158a8b3d4)
15 uint8_t upper
[256]; /* Codepage upper case table */
16 uint8_t lower
[256]; /* Codepage lower case table */
19 * The primary Unicode match is the same case, i.e. A -> A,
20 * the secondary Unicode match is the opposite case, i.e. A -> a.
22 uint16_t uni
[2][256]; /* Primary and alternate Unicode matches */
25 extern const struct codepage codepage
;
27 #endif /* CODEPAGE_H */