home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CBASE101.ZIP / BLKIO112.ZIP / BOOL.H < prev    next >
Text File  |  1990-06-20  |  322b  |  17 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "@(#)bool.h    1.4 - 90/06/20" */
  5.  
  6. /* boolean definitions */
  7.  
  8. #ifndef BOOL_H        /* prevent multiple includes */
  9. #define BOOL_H
  10.  
  11. typedef    unsigned char    bool;
  12.  
  13. #define TRUE    ((bool)1)
  14. #define FALSE    ((bool)0)
  15.  
  16. #endif    /* #ifndef BOOL_H */
  17.