1 #ifndef TimeZoneAndCanonical_D_H 2 #define TimeZoneAndCanonical_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 "TimeZone.d.h" 11 12 13 14 15 typedef struct TimeZoneAndCanonical { 16 TimeZone* time_zone; 17 DiplomatStringView canonical; 18 } TimeZoneAndCanonical; 19 20 typedef struct TimeZoneAndCanonical_option {union { TimeZoneAndCanonical ok; }; bool is_ok; } TimeZoneAndCanonical_option; 21 22 23 24 #endif // TimeZoneAndCanonical_D_H 25