?? parse.h
字號:
/* parse.h
* The parser interface for the TINY compiler
*分析程序
* Compiler Construction: Principles and Practice
* Kenneth C. Louden
* 編譯原理及實踐
* (美) Kenneth C. Louden 著
* 馮博琴 馮嵐 等譯
* 機(jī)械工業(yè)出版社 IBSN 7-111-07703-2
* 源代碼:zwf編輯并修訂
* Code Modify:
*/
#ifndef _PARSE_H_
#define _PARSE_H_
/* Function parse returns the newly
* constructed syntax tree
*/
TreeNode *parse(void);
#endif /* _PARSE_H_ */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -