home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / convergent / ctdebu.h < prev    next >
Text File  |  2020-01-01  |  501b  |  22 lines

  1. /*  C K D E B U . H  */
  2.  
  3. /*
  4.  This file is included by all C-Kermit modules, including the modules
  5.  that aren't specific to Kermit (like the command parser and the ck[xz]*
  6.  modules.  It specifies format codes for debug(), tlog(), and similar
  7.  functions, and includes any necessary typedefs.
  8. */
  9.  
  10. #define F000 0                /* Formats for debug() */
  11.  
  12. #define F001 1
  13. #define F010 2
  14. #define F011 3
  15. #define F100 4
  16. #define F101 5
  17. #define F110 6
  18. #define F111 7
  19.  
  20. typedef unsigned char CHAR;
  21. typedef unsigned long LONG;
  22.