lex.h

来自「一个编译器修改的例子」· C头文件 代码 · 共 18 行

H
18
字号
#ifndef LEX_H#define LEX_H#include <stdio.h>extern FILE	*yyin;/* The following two variables are copied by the new_token function. */extern char	*yytext;    	/* String representation of the recognised				 * token, set by yylex().				 */extern unsigned current_line;	/* Maintained by the C-code in lex.l */extern int	yylex(void);#endif

⌨️ 快捷键说明

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