프로그래밍

[C] printf 다중매크로.....

지니아부지 2011. 10. 7. 15:33
http://airguy.egloos.com/399973

 

#ifndef NDEBUG
#define debugprintf(fmt,args...) printf( fmt, ## args )
#define traceprintf(fmt,args...) printf( "[%s %s %d]" fmt, __FILE__,__FUNCTION__,__LINE__, ## args )
#else
#define debugprintf(fmt,args...)
#define traceprintf(fmt,args...)
#endif



'프로그래밍' 카테고리의 다른 글

스케줄링  (0) 2011.10.10
실시간 리눅스  (0) 2011.10.10
Reliable udp  (0) 2011.08.18
1차원 배열 다수를 2차원 배열로  (0) 2011.08.18
ZeroMemory, memset, 구조체={0} 의 차이  (0) 2011.07.30