📄 debug.h
字号:
#include <stdio.h>#ifndef _DEBUG_H_#define _DEBUG_H_#if (defined(__APPLE__) && defined(__MACH__)) // Mac OS X and Darwin /* I can't get this to work under OS X, Apple really screwed up the * preprocessor somehow. So for now, disable it. */#define DBG#else#ifdef DEBUG_FILE#define DBG(fmt, args...) printf( "%s: " fmt, __FUNCTION__ , ## args); fflush(stdout)#else#define DBG(fmt, args...)#endif#endif /* MacOS X */#endif /* _DEBUG_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -