#define _DEBUG_

#ifdef _DEBUG_
#define  printm(fmt, ...) do { printf("%s line %d, "fmt, __func__, \
__LINE__, ##__VA_ARGS__); } while(0)
#else
#define printm(fmt, ...) do { } while(0)
#endif

相关文章:

  • 2022-01-13
  • 2021-07-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-08-28
猜你喜欢
  • 2021-11-28
  • 2021-04-21
  • 2022-12-23
  • 2021-09-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案