IsoDateTime.d.h (408B)
1 #ifndef IsoDateTime_D_H 2 #define IsoDateTime_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 13 14 15 16 typedef struct IsoDateTime { 17 IsoDate* date; 18 Time* time; 19 } IsoDateTime; 20 21 typedef struct IsoDateTime_option {union { IsoDateTime ok; }; bool is_ok; } IsoDateTime_option; 22 23 24 25 #endif // IsoDateTime_D_H