aboutsummaryrefslogtreecommitdiff
path: root/src/symboltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/symboltable.h')
-rw-r--r--src/symboltable.h10
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
27void addVar(const char name[], int type); 27void glo_addVar(const char name[], int type);
28void lookup(const char name[]); 28int glo_lookup(const char name[]);
29void display_table(); 29void glo_display_table();
30int get_type(const char name[]); 30void loc_addVar(const char name[], int type);
31int loc_lookup(const char name[]);
32void loc_display_table();
31#endif \ No newline at end of file 33#endif \ No newline at end of file