diff options
Diffstat (limited to 'src/symboltable.h')
-rw-r--r-- | src/symboltable.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/symboltable.h b/src/symboltable.h index bd7a373..ac6db36 100644 --- a/src/symboltable.h +++ b/src/symboltable.h | |||
@@ -26,8 +26,11 @@ typedef struct { | |||
26 | 26 | ||
27 | void glo_addVar(const char name[], int type); | 27 | void glo_addVar(const char name[], int type); |
28 | int glo_lookup(const char name[]); | 28 | int glo_lookup(const char name[]); |
29 | int glo_get_addr(const char name[]); | ||
29 | void glo_display_table(); | 30 | void glo_display_table(); |
30 | void loc_addVar(const char name[], int type); | 31 | void loc_addVar(const char name[], int type); |
31 | int loc_lookup(const char name[]); | 32 | int loc_lookup(const char name[]); |
33 | int loc_get_addr(const char name[]); | ||
32 | void loc_display_table(); | 34 | void loc_display_table(); |
35 | void check_expected_type(int type_to_check, int type_expected); | ||
33 | #endif \ No newline at end of file | 36 | #endif \ No newline at end of file |