home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 191_01 / std.h < prev    next >
Text File  |  1986-04-21  |  306b  |  15 lines

  1. /*#title STD.H    03/15/86 */
  2.  
  3. #define FALSE    0
  4. #define TRUE     !FALSE
  5. #define NUL      0
  6. #define FOREVER     while (TRUE)
  7. #define XX       0
  8. #define CR       0x0D
  9. #define LF       0x0A
  10.  
  11. typedef char     BOOLEAN;
  12. typedef unsigned char BYTE;
  13. typedef unsigned WORD;
  14. typedef int      (*FUNPTR)();
  15.