1 #ifndef BidiMirroringGlyph_D_H 2 #define BidiMirroringGlyph_D_H 3 4 #include <stdio.h> 5 #include <stdint.h> 6 #include <stddef.h> 7 #include <stdbool.h> 8 #include "diplomat_runtime.h" 9 10 #include "BidiPairedBracketType.d.h" 11 12 13 14 15 typedef struct BidiMirroringGlyph { 16 OptionChar mirroring_glyph; 17 bool mirrored; 18 BidiPairedBracketType paired_bracket_type; 19 } BidiMirroringGlyph; 20 21 typedef struct BidiMirroringGlyph_option {union { BidiMirroringGlyph ok; }; bool is_ok; } BidiMirroringGlyph_option; 22 23 24 25 #endif // BidiMirroringGlyph_D_H 26