1 #ifndef DateTimeLength_D_H 2 #define DateTimeLength_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 DateTimeLength { 15 DateTimeLength_Long = 0, 16 DateTimeLength_Medium = 1, 17 DateTimeLength_Short = 2, 18 } DateTimeLength; 19 20 typedef struct DateTimeLength_option {union { DateTimeLength ok; }; bool is_ok; } DateTimeLength_option; 21 22 23 24 #endif // DateTimeLength_D_H 25