home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_11 / 8n11064a < prev    next >
Text File  |  1990-07-27  |  311b  |  13 lines

  1. /* std.h - Standard Header File
  2.  *         Copyright 1986-90 by Cnapse
  3.  *         Written by: M. de Champlain
  4.  */
  5.  
  6. typedef  unsigned char   uchar,  byte;
  7. typedef  unsigned short  ushort, word;
  8. typedef  unsigned long   ulong, dword;
  9. typedef  int             bool;
  10.  
  11. #define  loop            while(1)
  12.  
  13.