printf 宏开关的写法

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u010344264/article/details/80874663

printf 宏开关的写法

//#define DEBUGE

#ifdef  DEBUGE
  #define face_printf(...)  printf(__VA_ARGS__)
#else
  #define face_printf(...)
#endif

猜你喜欢

转载自blog.csdn.net/u010344264/article/details/80874663
今日推荐