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