home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / graphics / a090_1 / h / bool next >
Text File  |  1991-08-29  |  162b  |  10 lines

  1. /**** bool.h ****/
  2. /* Defines 'BOOL' as the boolean type - values TRUE and FALSE.
  3.  */
  4.  
  5. #ifndef BOOL
  6.   #define BOOL int
  7.   #define FALSE 0
  8.   #define TRUE  1
  9. #endif
  10.