mybool.h

来自「自己做的常用库和实现的数据结构。public domain.」· C头文件 代码 · 共 43 行

H
43
字号
/* * Written by Marc Espie, September 25, 1999 * Public domain. */#ifndef	_STDBOOL_H_#define	_STDBOOL_H_	#ifndef __cplusplus#if defined(__GNUC__) && __GNUC__ >= 3/* Support for _C99: type _Bool is already built-in. */#define false	0#define true	1#else/* `_Bool' type must promote to `int' or `unsigned int'. */typedef enum {	false = 0,	true = 1} _Bool;/* And those constants must also be available as macros. */#define	false	false#define	true	true#endif/* User visible type `bool' is provided as a macro which may be redefined */#define bool _Bool#else /* __cplusplus */#define _Bool 	bool#define bool 	bool#define false 	false#define true 	true#endif /* __cplusplus *//* Inform that everything is fine */#define __bool_true_false_are_defined 1#endif /* _STDBOOL_H_ */

⌨️ 快捷键说明

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