21 #ifndef STDBOOL_WIN32_H
22 #define STDBOOL_WIN32_H
25 #error "Use this header only with Microsoft Visual C++ compilers!"
30 typedef unsigned char bool;
36 #define CASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
39 CASSERT(
sizeof(
bool) == 1, bool_is_one_byte)
#define CASSERT(exp, name)
Definition: stdbool.h:36
#define false
Definition: stdbool.h:33
#define true
Definition: stdbool.h:32
unsigned char bool
Definition: stdbool.h:30