_ps1.0_parser.h

来自「使用stl技术,(还没看,是听说的)」· C头文件 代码 · 共 31 行

H
31
字号
#ifndef BISON__PS1_0_PARSER_H
# define BISON__PS1_0_PARSER_H

#ifndef YYSTYPE
typedef union 
{
	int ival;
	float fval;
	
	string * sval;
	constdef * cdef;
	vector<constdef> * consts;
	vector<string> * line;
	list<vector<string> > * lines;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define	HEADER	257
# define	NEWLINE	258
# define	NUMBER	259
# define	REG	260
# define	DEF	261
# define	ADDROP	262
# define	BLENDOP	263


extern YYSTYPE ps10_lval;

#endif /* not BISON__PS1_0_PARSER_H */

⌨️ 快捷键说明

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