1 #ifndef CollatorCaseFirst_D_H 2 #define CollatorCaseFirst_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 CollatorCaseFirst { 15 CollatorCaseFirst_Off = 0, 16 CollatorCaseFirst_Lower = 1, 17 CollatorCaseFirst_Upper = 2, 18 } CollatorCaseFirst; 19 20 typedef struct CollatorCaseFirst_option {union { CollatorCaseFirst ok; }; bool is_ok; } CollatorCaseFirst_option; 21 22 23 24 #endif // CollatorCaseFirst_D_H 25