#define cprintf(fmt, args...) do { \
FILE *fp = fopen("/dev/console", "w"); \
if (fp) { \
fprintf(fp, fmt , ## args); \
fclose(fp); \
} \
} while (0)
cprintf
最新推荐文章于 2025-05-10 15:47:27 发布
#define cprintf(fmt, args...) do { \
FILE *fp = fopen("/dev/console", "w"); \
if (fp) { \
fprintf(fp, fmt , ## args); \
fclose(fp); \
} \
} while (0)

被折叠的 条评论
为什么被折叠?
