#ifndef SYMTAB_H #define SYMTAB_H typedef struct { int type ; int var_no ; } st_entry ; #ifdef __cplusplus extern "C" { #endif void st_init() ; void st_insert(char *, st_entry) ; st_entry *st_find(char *) ; void st_dump() ; #ifdef __cplusplus } #endif #endif