⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bool.h

📁 一个很好用的解析
💻 H
字号:
/* This takes the place of C99 stdbool.h, which at least some Windows   compilers don't have.  (October 2005).   One must not also include <stdbool.h>, because it might cause a name   collision.*/#ifndef __cplusplus/* At least the GNU compiler defines __bool_true_false_are_defined */#ifndef __bool_true_false_are_defined#define __bool_true_false_are_definedtypedef enum {    false = 0,    true = 1} bool;#endif#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -