ZonedIsoDateTime.d.h (498B)
1 #ifndef ZonedIsoDateTime_D_H 2 #define ZonedIsoDateTime_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 "IsoDate.d.h" 11 #include "Time.d.h" 12 #include "TimeZoneInfo.d.h" 13 14 15 16 17 typedef struct ZonedIsoDateTime { 18 IsoDate* date; 19 Time* time; 20 TimeZoneInfo* zone; 21 } ZonedIsoDateTime; 22 23 typedef struct ZonedIsoDateTime_option {union { ZonedIsoDateTime ok; }; bool is_ok; } ZonedIsoDateTime_option; 24 25 26 27 #endif // ZonedIsoDateTime_D_H