decafclexer.h
来自「decafc的源代码」· C头文件 代码 · 共 37 行
H
37 行
/**************************************************************************** * File name: decafcLexer.h * * Description: header file for decafc.c * * Input: none * * Output: none * * Author: Luojian Chen * * Date: February 16, 1997 * ****************************************************************************/#ifndef _DECAFC_LEXER_H_#define _DECAFC_LEXER_H_#include <stdio.h>#include <string.h>#include <malloc.h>#include "decafc.h"#include "ASTree.h"#include "decafcParser.h"#include "decafcError.h"#include "symbolTable.h"#define EOL '\n'#define TAB_DISTANCE 8/* table storing keywords and operators information */typedef struct { String string; /* the keyword or operator itself */ int id; /* the token id of the keyword or operator */} ReservedStringTableEntry;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?