STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
stdbool.h
Go to the documentation of this file.
1 //
2 // stdbool.h
3 //
4 // Copyright (c) Microsoft Corporation. All rights reserved.
5 //
6 // The C Standard Library <stdbool.h> header.
7 //
8 #ifndef _STDBOOL
9 #define _STDBOOL
10 
11 #define __bool_true_false_are_defined 1
12 
13 #ifndef __cplusplus
14 
15 #define bool _Bool
16 #define false 0
17 #define true 1
18 
19 #endif /* __cplusplus */
20 
21 #endif /* _STDBOOL */
22 
23 /*
24  * Copyright (c) 1992-2010 by P.J. Plauger. ALL RIGHTS RESERVED.
25  * Consult your license regarding permissions and restrictions.
26 V5.30:0009 */