home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / simple.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  308 b   |  17 lines

  1. #ifndef __SIMPLE_H_
  2. #define __SIMPLE_H_
  3.  
  4. //  File contains some simplifications.
  5.  
  6. typedef unsigned char uchar;
  7. typedef unsigned int uint;
  8. typedef unsigned long ulong;
  9. typedef int bool;
  10. typedef int BOOL;
  11.  
  12. #define TRUE  1
  13. #define FALSE 0
  14. #define ON   TRUE
  15. #define OFF  FALSE
  16.  
  17. #endif __SIMPLE_H_