stdbool.h 136 B

1234567891011
  1. #ifndef _STDBOOL_H
  2. #define _STDBOOL_H
  3. /* ISOC99 boolean */
  4. #define bool _Bool
  5. #define true 1
  6. #define false 0
  7. #endif /* _STDBOOL_H */