1
0

bool.h 222 B

123456789101112131415161718
  1. #ifndef BOOL_H_INCLUDED
  2. #define BOOL_H_INCLUDED
  3. #ifndef TRUE
  4. #define TRUE (1)
  5. #endif
  6. #ifndef FALSE
  7. #define FALSE (0)
  8. #endif
  9. #ifndef __cplusplus
  10. #ifndef HAVE_BOOL
  11. #define HAVE_BOOL
  12. typedef int bool;
  13. #endif
  14. #endif
  15. #endif