2
0

stdbool.h 167 B

1234567891011121314
  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3. #ifndef __cplusplus
  4. #define true 1
  5. #define false 0
  6. #define bool _Bool
  7. #endif
  8. #define __bool_true_false_are_defined 1
  9. #endif