scanner.h
来自「一个面向对像语言的编译器」· C头文件 代码 · 共 20 行
H
20 行
/*
* File: scanner.h
* ---------------
* You should not need to modify this file. It declare a few constants,
* types, variables,and functions that are used and/or exported by
* the lex-generated scanner.
*/
#ifndef _H_scanner
#define _H_scanner
extern char *yytext; // Text of lexeme just scanned
int yylex(void); // Defined in the generated lex.yy.c file
void Inityylex(); // Defined in scanner.l user subroutine section
const char *GetLineNumbered(int number); // ditto
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?