📄 lex.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -