1 #ifndef WeekendContainsDay_D_H 2 #define WeekendContainsDay_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 struct WeekendContainsDay { 15 bool monday; 16 bool tuesday; 17 bool wednesday; 18 bool thursday; 19 bool friday; 20 bool saturday; 21 bool sunday; 22 } WeekendContainsDay; 23 24 typedef struct WeekendContainsDay_option {union { WeekendContainsDay ok; }; bool is_ok; } WeekendContainsDay_option; 25 26 27 28 #endif // WeekendContainsDay_D_H 29