scanner.h
来自「编译原理课程设计之pp2语法分析程序」· C头文件 代码 · 共 27 行
H
27 行
/*
* 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
#include <stdio.h>
#define MaxIdentLen 31 // Maximum length for identifiers
extern char *yytext; // Text of lexeme just scanned
int yylex(); // Defined in the generated lex.yy.c file
void yyrestart(FILE *fp); // ditto
void InitScanner(); // Defined in scanner.l user subroutines
const char *GetLineNumbered(int n); // ditto
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?