home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume19 / wacco / part01 / boolean.h < prev    next >
Text File  |  1991-05-19  |  188b  |  7 lines

  1. // Copyright (c) 1991 by Parag Patel.  All Rights Reserved.
  2. // $Header: boolean.h,v 1.3 91/02/22 16:04:53 hmgr Exp $
  3.  
  4. typedef int boolean;
  5. const boolean FALSE = 0;
  6. const boolean TRUE = 1;
  7.