📄 ifwords.h
字号:
/* ifwords.h - defines types for EXPR Parser/*/* Copyright (c) 1995-1999 Applied Information Technologies, Inc./* All Rights Reserved./* /* Distributed uder the GNU General Public License which was included in/* the file named "LICENSE" in the package that you recieved./* If not, write to:/* The Free Software Foundation, Inc.,/* 675 Mass Ave, Cambridge, MA 02139, USA. */#ifndef _IFWORDS_H_#define _IFWORDS_H_#include "scalar.h"/*/* Reserved words */#define FUNC 0#define TOKEN 1typedef struct { char *pName; int iToken ,iType; PFPS_t pScalarFunc;} Reserved_t;extern Reserved_t gaReservedWordTable [ ] ;#endif /* _IFWORDS_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -