parse.h
来自「混合991_编译实验」· C头文件 代码 · 共 44 行
H
44 行
#ifndef _PARSE_H
#define _PARSE_H
#include <yacc.h>
#define INT 257
#define CHAR 258
#define FLOAT 259
#define VOID 260
#define NUM 261
#define FLOATNUM 262
#define CONSTCHAR 263
#define ID 264
#define IF 265
#define ELSE 266
#define WHILE 267
#define BREAK 268
#define RETURN 269
#define LBRACKET 270
#define RBRACKET 271
#define LPAREN 272
#define RPAREN 273
#define LBC 274
#define RBC 275
#define SEMI 276
#define COMMA 277
#define ASSIGN 278
#define EQ 279
#define LT 280
#define LE 281
#define GT 282
#define GE 283
#define NE 284
#define AND 285
#define OR 286
#define NOT 287
#define PLUS 288
#define MINUS 289
#define TIMES 290
#define OVER 291
#define ERROR 292
#define ENDFILE 0
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?