stdbool.h 128 B

12345678910111213
  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3. #ifndef __cplusplus
  4. #define true 1
  5. #define false 0
  6. typedef _Bool bool;
  7. #endif
  8. #endif