diff options
Diffstat (limited to 'src/symboltable.h')
-rw-r--r-- | src/symboltable.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/symboltable.h b/src/symboltable.h index 02e47a4..bd7a373 100644 --- a/src/symboltable.h +++ b/src/symboltable.h | |||
@@ -24,8 +24,10 @@ typedef struct { | |||
24 | } SymbolTable; | 24 | } SymbolTable; |
25 | 25 | ||
26 | 26 | ||
27 | void addVar(const char name[], int type); | 27 | void glo_addVar(const char name[], int type); |
28 | void lookup(const char name[]); | 28 | int glo_lookup(const char name[]); |
29 | void display_table(); | 29 | void glo_display_table(); |
30 | int get_type(const char name[]); | 30 | void loc_addVar(const char name[], int type); |
31 | int loc_lookup(const char name[]); | ||
32 | void loc_display_table(); | ||
31 | #endif \ No newline at end of file | 33 | #endif \ No newline at end of file |