📄 boolean.h
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -