home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / src / gopher / gopher1.01 / object / boolean.h next >
C/C++ Source or Header  |  1992-04-28  |  215b  |  17 lines

  1. /*
  2.  * Simple boolean type
  3.  */
  4.  
  5. #ifndef BOOLEAN_H
  6. #define BOOLEAN_H
  7.  
  8. typedef int boolean;
  9. typedef int BOOLEAN;
  10.  
  11. #if !defined(TRUE) && !defined(FALSE)
  12. #define TRUE (1)
  13. #define FALSE (0)
  14. #endif
  15.  
  16. #endif /* BOOLEAN_H */
  17.