VS 2008里面没有stdbool.h 怎么把这个弄进去 请高手指点 可否说详细一点啊!
VS2008里面没有stdbool.h怎么把这个弄进去请高手指点可否说详细一点啊!怎么下载怎么设置啊/*stdbool.h--Booleantypeandvalues(s...
VS 2008里面没有stdbool.h 怎么把这个弄进去 请高手指点 可否说详细一点啊!
怎么下载怎么设置啊
/*
stdbool.h
-- Boolean type and values
(substitute for missing C99 standard header)
public-domain implementation from [EMAIL PROTECTED]
implements subclause 7.16 of ISO/IEC 9899:1999 (E)
*/
#ifndef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
/* program is allowed to contain its own definitions, so ... */
#undef bool
#undef true
#undef false
#if __STDC_VERSION__ < 199901
typedef int _Bool
#endif
#define bool _Bool
#define true 1
#define false 0
#endif /* !defined(__bool_true_false_are_defined) */
这是我在网上找到的 怎么弄啊!! 是一个.h的文件放到某个文件夹下面吗?还是什么的 他给我的就是这段代码 怎么加到代码里面
这个是BAIDU上一个朋友说的
将头文件加入到当前工程中,或者Project上右键->属性->配置属性->C/C++->附加包含目录(你头文件目录) project又在哪里啊! 没有找到! 展开
怎么下载怎么设置啊
/*
stdbool.h
-- Boolean type and values
(substitute for missing C99 standard header)
public-domain implementation from [EMAIL PROTECTED]
implements subclause 7.16 of ISO/IEC 9899:1999 (E)
*/
#ifndef __bool_true_false_are_defined
#define __bool_true_false_are_defined 1
/* program is allowed to contain its own definitions, so ... */
#undef bool
#undef true
#undef false
#if __STDC_VERSION__ < 199901
typedef int _Bool
#endif
#define bool _Bool
#define true 1
#define false 0
#endif /* !defined(__bool_true_false_are_defined) */
这是我在网上找到的 怎么弄啊!! 是一个.h的文件放到某个文件夹下面吗?还是什么的 他给我的就是这段代码 怎么加到代码里面
这个是BAIDU上一个朋友说的
将头文件加入到当前工程中,或者Project上右键->属性->配置属性->C/C++->附加包含目录(你头文件目录) project又在哪里啊! 没有找到! 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询