NIM 跨平台 C++ SDK
Toggle main menu visibility
首页
相关页面
命名空间
命名空间列表
命名空间成员
全部
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
函数
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
变量
_
a
c
d
g
h
i
k
l
m
n
p
s
t
v
类型定义
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
枚举
a
c
e
m
n
o
p
s
t
u
v
枚举值
a
b
c
d
i
k
n
o
r
s
u
v
类
类列表
类索引
类继承关系
类成员
全部
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
函数
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
~
变量
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
类型定义
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
枚举
枚举值
a
d
k
m
n
t
相关函数
_
a
b
c
m
o
p
r
s
u
v
文件
文件列表
文件成员
全部
_
a
b
c
d
e
f
h
i
j
k
l
n
o
p
q
s
t
u
w
函数
c
i
n
p
变量
f
h
i
k
o
s
t
w
类型定义
b
h
j
n
q
u
枚举
b
c
l
n
枚举值
a
b
c
k
l
n
s
t
宏定义
_
a
d
e
f
i
j
n
p
t
u
•
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
页
载入中...
搜索中...
未找到
stdbool.h
浏览该文件的文档.
1
8
/* stdbool.h header */
9
/* Copyright 2003-2010 IAR Systems AB. */
10
11
/* NOTE: IAR Extensions must be enabled in order to use the bool type! */
12
13
#ifndef _STDBOOL
14
#define _STDBOOL
15
16
#ifndef _SYSTEM_BUILD
17
#pragma warning(disable : 4068)
18
#pragma system_include
19
#endif
20
21
#ifndef __cplusplus
22
23
/* Even in pure C, we still need a standard boolean typedef */
24
#ifndef bool
25
typedef
unsigned
char
bool
;
26
#endif
27
// #define true 1
28
// #define false 0
29
#ifndef true
30
#define true (1)
31
#endif
32
#ifndef false
33
#define false (0)
34
#endif
35
36
// typedef int _Bool;
37
// #define bool _Bool
38
//
39
// #define true 1
40
// #define false 0
41
42
#endif
/* !__cplusplus */
43
44
#define __bool_true_false_are_defined 1
45
46
#endif
/* !_STDBOOL */
47
48
/*
49
* Copyright (c) 1992-2009 by P.J. Plauger. ALL RIGHTS RESERVED.
50
* Consult your license regarding permissions and restrictions.
51
V5.04:0576 */
bool
unsigned char bool
Definition:
stdbool.h:25
include
stdbool.h
制作者
1.9.6