home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / v / vol1n7.zip / HEADER.H < prev    next >
Text File  |  1992-09-28  |  379b  |  8 lines

  1. // HEADER.H - don't you love these original names?!?!?
  2.  
  3. typedef signed char SBYTE;        // Hmmm... is this already defined somewhere?
  4. typedef unsigned char BOOL8;      // BOOL is a 32-bit boolean.  Give me a break!!!!!!!!!!!
  5.  
  6. #define BETWEEN(x,a,b) ( (a) < (b) ? ((x) >= (a) && (x) <= (b)) : ((x) >= (b) && (x) <= (a)) )
  7. // returns TRUE if 'x' lies between 'a' and 'b'
  8.