📄 bool.h
字号:
/* Copyright 2001,2002,2003 NAH6
* All Rights Reserved
*
* Parts Copyright DoD, Parts Copyright Starium
*
*/
/* -*-C-*-
*******************************************************************************
*
* File: bool.h
* RCS: $Id: bool.h,v 1.3 2003/11/22 16:34:28 itsme Exp $
* Description:
*
* (C) Copyright 2000, Starium Ltd., all rights reserved.
*
*******************************************************************************
*/
#ifndef _BOOL_H_
#define _BOOL_H_
typedef int bool;
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#endif /* _BOOL_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -