1 #ifndef YearStyle_D_H 2 #define YearStyle_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 YearStyle { 15 YearStyle_Auto = 0, 16 YearStyle_Full = 1, 17 YearStyle_WithEra = 2, 18 } YearStyle; 19 20 typedef struct YearStyle_option {union { YearStyle ok; }; bool is_ok; } YearStyle_option; 21 22 23 24 #endif // YearStyle_D_H 25