boolean.h

来自「这是一款很好用的工具包」· C头文件 代码 · 共 24 行

H
24
字号
/* * Boolean Type * * Copyright (c) 1995,2006 SRI International.  All Rights Reserved. * * @(#)$Header: /home/srilm/devel/misc/src/RCS/Boolean.h,v 1.5 2006/01/09 17:39:03 stolcke Exp $ * */#ifndef _BOOLEAN_H_#define _BOOLEAN_H_#if defined(__GNUG__) || defined(__INTEL_COMPILER) || defined(__SUNPRO_CC) || defined (_MSC_VER)typedef bool Boolean;#else /* ! __GNUG__ && !__INTEL_COMPILER && !__SUNPRO_CC && !_MSC_VER */typedef int Boolean;const Boolean false = 0;const Boolean true = 1;#endif /* __GNUG __ || __INTEL_COMPILER || __SUNPRO_CC || _MSC_VER */#endif /* _BOOLEAN_H_ */

⌨️ 快捷键说明

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