stdbool.h

来自「msp 的开发实例程序」· C头文件 代码 · 共 32 行

H
32
字号
/*                      - STDBOOL.H -

   The "bool" type.

   $Revision: 38615 $

   Copyright 2003 - 2004 IAR Systems. All rights reserved.
*/

#ifndef _STDBOOL
#define _STDBOOL

#ifndef _SYSTEM_BUILD
  #pragma system_include
#endif

#ifndef __C99_BOOL__
  #error <stdbool.h>  compiled with wrong (version of IAR) compiler
#endif

#ifndef __cplusplus

#define bool _Bool
#define true 1
#define false 0

#define __bool_true_false_are_defined 1

#endif /* !__cplusplus */

#endif /* !_STDBOOL */

⌨️ 快捷键说明

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