📄 config.h.bot
字号:
typedef unsigned char u8;#if SIZEOF_SHORT == 2typedef unsigned short u16;#elif SIZEOF_INT == 2typedef unsigned int u16;#else#warn unable to find type with 2 bytes size#endif#if SIZEOF_INT == 4typedef unsigned int u32;#elif SIZEOF_LONG == 4typedef unsigned long u32;#else#warn unable to find type with 4 bytes size#endif#if defined(__GNUC__) && defined(__i386__)#define REGPARAM __attribute__((regparm(1)))#else#define REGPARAM#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -