stdbool.h
来自「realview22.rar」· C头文件 代码 · 共 20 行
H
20 行
/* stdbool.h: ISO/IEC 9899:1999 (C99), section 7.16 */
/* Copyright (C) ARM Ltd., 2002
* All rights reserved
* RCS $Revision: 1.4 $
* Checkin $Date: 2003/12/13 18:50:06 $
* Revising $Author: sdouglas $
*/
#ifndef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
#ifndef __cplusplus /* In C++, 'bool', 'true' and 'false' and keywords */
#define bool _Bool
#define true 1
#define false 0
#endif
#endif /* __bool_true_false_are_defined */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?