parse.h
来自「一个简化的编译器」· C头文件 代码 · 共 17 行
H
17 行
/****************************************************//* File: parse.h *//* The parser interface for the TINY compiler *//* Compiler Construction: Principles and Practice *//* Kenneth C. Louden *//****************************************************/#ifndef _PARSE_H_#define _PARSE_H_/* Function parse returns the newly * constructed syntax tree */TreeNode * parse(void);#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?