1 #ifndef BidiDirection_D_H 2 #define BidiDirection_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 11 12 13 14 typedef enum BidiDirection { 15 BidiDirection_Ltr = 0, 16 BidiDirection_Rtl = 1, 17 BidiDirection_Mixed = 2, 18 } BidiDirection; 19 20 typedef struct BidiDirection_option {union { BidiDirection ok; }; bool is_ok; } BidiDirection_option; 21 22 23 24 #endif // BidiDirection_D_H 25