📄 scc.h
字号:
#ifndef __SCC_H__
#define __SCC_H__
// Every rule in Bison have an associated type or "lvalue". Bison expects a
// program to override the 'YYSTYPE' macro with the type name. Here, we
// define all rules in Bison are a PTNode smart pointer.
#define YYSTYPE PTNodePtr
// Extern a few functions that are needed by Flex & Bison to communicate to
// each other.
extern int yyerror( char *err );
extern int yylex();
extern int yyparse();
#endif // __SCC_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -