home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / aztec_c / lzw / debug.h next >
Encoding:
C/C++ Source or Header  |  1985-08-20  |  256 b   |  9 lines

  1. #ifdef DEBUG
  2. #define DEBUGGER(Statements) Statements
  3. #define WHERE(Statements) fprintf(stderr,"\n%s|%d\n",__FILE__,__LINE__);\
  4.             Statements
  5. #else
  6. #define DEBUGGER(Statements) /* empty */
  7. #define WHERE(Statements) /* empty */
  8. #endif
  9.