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

📄 cm_parse.h

📁 小型编译系统的源代码
💻 H
字号:
#ifndef _CM_PARSE_H
#define _CM_PARSE_H

#include <yacc.h>

#define INT 257
#define CHAR 258
#define FLOAT 259
#define VOID 260
#define IF 261
#define ELSE 262
#define WHILE 263
#define FOR 264
#define RETURN 265
#define ID 266
#define NUM 267
#define FLOATNUM 268
#define CONSTCHAR 269
#define AND 270
#define OR 271
#define NOT 272
#define ASSIGN 273
#define EQ 274
#define LT 275
#define LE 276
#define GT 277
#define GE 278
#define NE 279
#define PLUS 280
#define MINUS 281
#define TIMES 282
#define OVER 283
#define LPAREN 284
#define RPAREN 285
#define SEMICOLON 286
#define COMMA 287
#define LBRACKET 288
#define RBRACKET 289
#define LBRACE 290
#define RBRACE 291
#define ERROR 292
#define ENDFILE 293
#endif

⌨️ 快捷键说明

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