📄 bool.h
字号:
// Defining TRUE and FALSE is usually a Bad Idea,// because you will probably be inconsistent with anyone// else who had the same clever idea.// Therefore: DON'T USE THIS FILE.#ifndef _bool_h#define _bool_h 1#undef FALSE#undef TRUEenum bool { FALSE = 0, TRUE = 1 };#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -