home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource3 / 191_01 / std.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-04-21  |  306 b   |  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.