Ai
1 Star 0 Fork 0

FreeRTOS/coreJSON

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
stdbool.readme 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
Dan Good 提交于 2020-12-08 06:24 +08:00 . Swap bool_ enum for stdbool.h (#72)
#ifndef _STDBOOL_H
#define _STDBOOL_H
/*******************************************************************************
* This file contains the definitions specified in stdbool.h. It is provided to
* allow the library to be built using compilers that do not provide their own
* stdbool.h defintion.
*
* To use this file:
*
* 1) Copy this file into a directory that is in your compiler's include path.
* The directory must be part of the include path for system header files,
* for example passed using gcc's "-I" or "-isystem" options.
*
* 2) Rename the copied file stdbool.h.
*
*/
#ifndef __cplusplus
/* _Bool was introduced in C99. */
#define bool int
#define false 0
#define true 1
#endif
#define __bool_true_false_are_defined 1
#endif /* _STDBOOL_H */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/FreeRTOSMirror/coreJSON.git
git@gitee.com:FreeRTOSMirror/coreJSON.git
FreeRTOSMirror
coreJSON
coreJSON
main

搜索帮助