diff options
author | kugwa <kugwa2000@gmail.com> | 2015-10-21 14:54:34 +0800 |
---|---|---|
committer | kugwa <kugwa2000@gmail.com> | 2015-10-21 14:54:34 +0800 |
commit | e56bbe7525c971a4b918f815b1a572e7838f6b3c (patch) | |
tree | d8d97f871b735fe6767f53cfe6e11b1ec4a84135 /symbol-table.h | |
parent | 0eef921b4e2620600d2ed77ac0adf737ba7d3fa2 (diff) | |
download | compiler2015-e56bbe7525c971a4b918f815b1a572e7838f6b3c.tar.gz compiler2015-e56bbe7525c971a4b918f815b1a572e7838f6b3c.tar.zst compiler2015-e56bbe7525c971a4b918f815b1a572e7838f6b3c.zip |
Add fillTab() for hw2
Diffstat (limited to 'symbol-table.h')
-rw-r--r-- | symbol-table.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/symbol-table.h b/symbol-table.h index e234a43..c92986d 100644 --- a/symbol-table.h +++ b/symbol-table.h @@ -10,5 +10,6 @@ typedef struct symtab symtab; symtab* lookup(char *name); void insertID(char *name); void printSymTab(void); +int fillTab(symtab **tp); // vim: set sw=4 ts=4 sts=4 et: |