#ifndef __STDC_VERSION_STDBOOL_H__ #define __STDC_VERSION_STDBOOL_H__ 202311L #ifndef __cplusplus #if __STDC_VERSION__ >= 202311L #define true true #define false false #define bool bool #else #define true 1 #define false 0 #define bool _Bool #endif #endif #define __bool_true_false_are_defined 1 #endif