⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 parse.h

📁 完成一个简化的C语言编译程序
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -