pl3.tab.h
来自「简介:PL0语言是pascal语言的一个子集。编译VC工程之前」· C头文件 代码 · 共 39 行
H
39 行
#ifndef BISON_PL3_TAB_H
# define BISON_PL3_TAB_H
#ifndef YYSTYPE
typedef union{
char *name;
int value;
int val;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define BEGINSYM 257
# define ENDSYM 258
# define CONST 259
# define VAR 260
# define PROCEDURE 261
# define REPEAT 262
# define UNTIL 263
# define WHILE 264
# define CALL 265
# define DO 266
# define READ 267
# define WRITE 268
# define COLEQ 269
# define ODD 270
# define LEGAL_ID 271
# define NUMBER 272
# define LE 273
# define RE 274
# define IF 275
# define THEN 276
# define ELSE 277
extern YYSTYPE yylval;
#endif /* not BISON_PL3_TAB_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?