home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / llist.zip / CPPTYPE.H next >
Text File  |  1994-04-06  |  926b  |  24 lines

  1. //----------------------------------------------------------------------------//
  2. //  (c) Larry Morley, 1994                                                    //
  3. //                                                                            //
  4. //  Module:      cpptype.h                                                    //
  5. //  Description: Common types, defines etc. for the C++ code in the library.  //
  6. //                                                                            //
  7. //----------------------------------------------------------------------------//
  8.  
  9. //=====================================
  10. // Prevent accidental double includes
  11.  
  12. #ifndef __CPPTYPE_INCLUDED__
  13.    #define __CPPTYPE_INCLUDED__
  14. //=====================================
  15.  
  16. // True and False
  17.  
  18. typedef unsigned char BOOLEAN;
  19. #define FALSE ((BOOLEAN)0)
  20. #define TRUE  ((BOOLEAN)~0)
  21.  
  22. //=====================================
  23. #endif
  24.