home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Updates / DigitalCD / !DigitalCD / Copy / PowerBars / h / bool next >
Text File  |  1997-10-09  |  159b  |  13 lines

  1. #ifndef __bool__H
  2. #define __bool__H
  3.  
  4. typedef int bool;
  5. #define true  ((bool) 1)
  6. #define false ((bool) 0)
  7.  
  8. #ifndef NULL
  9. #define NULL ((void*) 0)
  10. #endif
  11.  
  12. #endif
  13.