[熱情]

디버깅 프린트문 넣기 본문

Coding

디버깅 프린트문 넣기

rootkaien 2014. 4. 9. 10:36
#define RDEBUG

#ifdef RDEBUG
#define rprintf(fmt, x... ) printf( "\r\n [ %s(%d) ] " fmt,  __func__ , __LINE__, ## x);
#else
#define rprintf(fmt,args...)
#endif
Comments