home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / utilities / print / pspager.lha / psp / include / bool.h next >
Encoding:
C/C++ Source or Header  |  1994-04-05  |  463 b   |  18 lines

  1. #ifndef _BOOL_H
  2. #define _BOOL_H
  3. /*                                                      
  4. **      $VER: bool.h 1.0 (7.3.94)             
  5. **                                                      
  6. **      Boolean type and constants for the C and C++ programming languages.
  7. **                                                      
  8. **      (C) Copyright 1994 Rainer Koppler
  9. */
  10.  
  11. #ifndef FALSE
  12. #define FALSE 0
  13. #define TRUE  1
  14. typedef int bool;
  15. #endif
  16.  
  17. #endif /*_BOOL_H*/
  18.