bool.h

来自「xmlrpc,用 XML表示得远程过程调用,基于web上得远程计算」· C头文件 代码 · 共 19 行

H
19
字号
#ifndef BOOL_H_INCLUDED
#define BOOL_H_INCLUDED

#ifndef TRUE
#define TRUE (1)
#endif
#ifndef FALSE
#define FALSE (0)
#endif

#ifndef __cplusplus
#ifndef HAVE_BOOL
#define HAVE_BOOL
typedef int bool;
#endif
#endif

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?