home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / deskutils / _a_l / boota / C-source / h / Useful < prev   
Encoding:
Text File  |  1991-11-09  |  682 b   |  18 lines

  1. /* > h.Useful  - (c) Paul Witheridge - Version 1.2 - 09 Nov 1991     */
  2.  
  3. /*===================================================================*/
  4. /*  This header includes useful definitions and macros               */
  5. /*===================================================================*/
  6.  
  7. #define ZERO     (0)                    /* Used for comparisons etc  */
  8. #define ALLON    (~0)                   /* Define mask of one bits   */
  9. #define FOREVER  while(1)               /* Used in do forever loop   */
  10.  
  11. enum boolean                            /* Define boolean type       */
  12. {
  13.   FALSE = 0,
  14.   TRUE  = 1
  15. };
  16.  
  17. /*===================================================================*/
  18.