boolean.h 113 B

123456789
  1. #ifndef BOOLEAN_H
  2. #define BOOLEAN_H
  3. #define boolean int
  4. #define true 1
  5. #define false 0
  6. #endif /* BOOLEAN_H */