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

📄 stdbool.h

📁 msp 的开发实例程序
💻 H
字号:
/*                      - 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -