parse.h
来自「c的简化编译器」· C头文件 代码 · 共 18 行
H
18 行
/****************************************************/
/* File: parse.h */
/* Main program for c- compiler */
/* Compiler Construction: Principles and Practice */
/* Maker:Liukai */
/****************************************************/
#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 + -
显示快捷键?