stdbool.h头文件

 1 /* Copyright (c) Microsoft Corporation. All rights reserved.
 2  * The C Standard Library <stdbool.h> header.*/
 3 #ifndef _STDBOOL
 4 #define _STDBOOL
 5 #define __bool_true_false_are_defined   1
 6 #ifndef __cplusplus
 7 #define bool    _Bool
 8 #define false   0
 9 #define true    1
10 #endif /* __cplusplus */
11 #endif /* _STDBOOL */
12 /* Copyright (c) 1992-2010 by P.J. Plauger.  ALL RIGHTS RESERVED.
13  * Consult your license regarding permissions and restrictions.
14  * V5.30:0009 */

 

posted @ 2021-04-14 14:02  昆山皮皮虾  阅读(235)  评论(0编辑  收藏  举报