parser.h

来自「一个面向对像语言的编译器」· C头文件 代码 · 共 22 行

H
22
字号
/*
 * File: parser.h
 * --------------
 * Do not modify this file. It provides constants and type definitions
 * that will be used by the parser.
 */

#ifndef _H_parser
#define _H_parser
#include "decllist.h"
class Declaration;               // these need to be forward declared since
class Type;                      // used in the yylval union
 
#include "parser_tab.h"               // use include generated header to get define

extern struct yyltype yylloc;    // global defined in generated y.tab.c file
 
int yyparse(void);              // Defined in the generated y.tab.c file
void Inityyparse(void);         // Defined in parser.y

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?