param.h

来自「为编译原理课程设计」· C头文件 代码 · 共 26 行

H
26
字号
FILE *fp_source;
FILE *fp_output;
FILE *fp_wordList;
char DoubleOperand[3];
int malloc_DO;
int malloc_WL;
int wordCount=35;
int doubleop_count=3;
int code_ident;
int code_const;
int code_crlf;
int line_count=1;
int word_count=0;
typedef struct
{
	char name[20];
	int type;
}WORD_LIST_ITEM;

typedef struct
{
	char name[50];
	int type;
}OUT_WORD_ITEM;

WORD_LIST_ITEM p_wordlist[35];

⌨️ 快捷键说明

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