home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / uupoll068.lha / misc / uupoll067.lha / src / dbg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-16  |  158 b   |  12 lines

  1. #ifndef DBG_H
  2. #define DBG_H
  3.  
  4. #include <stdio.h>
  5.  
  6. extern int dbglevel;
  7. extern FILE *dbghandle;
  8.  
  9. void dbg(int wLevel, char *cpFmtstr, ...);
  10.  
  11. #endif /* DBG_H */
  12.