bool.h

来自「This program demonstrates using a thread」· C头文件 代码 · 共 29 行

H
29
字号
/* bool.h - Boolean definitions */  /* Copyright 1998-2010 Wind River Systems, Inc. */  /*  * modification history  * --------------------  * 01a,25mar98,pai  written   *  */    #ifndef		__INCBoolh #define		__INCBoolh    #ifdef __cplusplus     enum Bool {False, True}; #else     typedef enum bool  { False, True } Bool; #endif  /* __cplusplus */    #endif	/* __INCBoolh   */ 

⌨️ 快捷键说明

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