home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Cheat II / original / error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-20  |  190 b   |  9 lines  |  [TEXT/KAHL]

  1. #define kDoVerifications true
  2.  
  3. #ifdef kDoVerifications
  4. #define verify(x) ((x) ? 1 : verifyFailed(__FILE__, __LINE__))
  5. #else
  6. #define verify(x)
  7. #endif
  8.  
  9. int verifyFailed(char *file, long line);