1 #ifndef DateTime_D_H 2 #define DateTime_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 "Date.d.h" 11 #include "Time.d.h" 12 13 14 15 16 typedef struct DateTime { 17 Date* date; 18 Time* time; 19 } DateTime; 20 21 typedef struct DateTime_option {union { DateTime ok; }; bool is_ok; } DateTime_option; 22 23 24 25 #endif // DateTime_D_H 26