home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / cppcom / bool.h next >
Encoding:
C/C++ Source or Header  |  1991-02-26  |  215 b   |  15 lines

  1. /* boolean enum type definitions */
  2.  
  3. #ifndef BOOL_H
  4. #define BOOL_H 1
  5.  
  6. enum boolean { false, true };
  7.  
  8. typedef boolean bool;
  9. typedef boolean Bool;
  10. typedef boolean Boolean;
  11.  
  12. #endif
  13.  
  14. /* end file bool.h */
  15.