stdbool.h 262 B

12345678910111213
  1. /*
  2. filesummary.CH: 提供布尔值定义
  3. filesummary.EN: Provide boolean definition
  4. CH: 表示32位布尔值(int)
  5. EN: 32 Bit Boolean (int)
  6. */
  7. typedef builtin bool;
  8. /*
  9. CH: 表示8位布尔值 (char)
  10. EN: 8 Bit Boolean (char)
  11. */
  12. typedef builtin _Bool;