File: debug.h

package info (click to toggle)
ircp 0.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 316 kB
  • ctags: 89
  • sloc: sh: 2,850; ansic: 950; makefile: 64
file content (8 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
//#define DEBUG_TCP 1

#define IRCP_DEBUG 0
#ifdef IRCP_DEBUG
#define DEBUG(n, format, args...) if(n <= IRCP_DEBUG) printf("%s(): " format, __FUNCTION__ , ##args)
#else
#define DEBUG(n, format, args...)
#endif //IRCP_DEBUG