symtab.h
来自「6个不同的词法语法分析程序源代码」· C头文件 代码 · 共 33 行
H
33 行
#ifndef _SYMTAB_H_
#define _SYMTAB_H_
#include "globals.h"
typedef struct
{
int memloc ;/* memory location for variable */
ExpType type ;
int isArr;
} Attr;
/* Procedure st_insert inserts line numbers and
* memory locations into the symbol table
* loc = memory location is inserted only the
* first time, otherwise ignored
*/
void st_insert( char * name, int lineno, Attr attr );
/* Function st_lookup returns the memory
* location of a variable or -1 if not found
*/
Attr st_lookup ( char * name );
/* Procedure printSymTab prints a formatted
* listing of the symbol table contents
* to the listing file
*/
void printSymTab(FILE * listing);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?