home *** CD-ROM | disk | FTP | other *** search
/ BBS 1 / BBS#1.iso / document / compress.arj / STYLE.H < prev    next >
Text File  |  1992-05-23  |  276b  |  16 lines

  1. /*    style.h
  2.  
  3.     Useful types, macros, etc.
  4. */
  5.  
  6.  
  7. typedef    signed char    BYTE;
  8. typedef    signed int    WORD;
  9. typedef    signed long    LONG;
  10. typedef    unsigned char    UBYTE;
  11. typedef    unsigned int    UWORD;
  12. typedef    unsigned long    ULONG;
  13.  
  14.  
  15. #define    arraySize(array)    (sizeof (array) / sizeof ((array) [0]) )
  16.