diff options
Diffstat (limited to 'symbol.h')
-rw-r--r-- | symbol.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/symbol.h b/symbol.h new file mode 100644 index 00000000..d5c2d85a --- /dev/null +++ b/symbol.h @@ -0,0 +1,6 @@ +extern NODE *install_symbol(char *name, NODETYPE type); +extern NODE *lookup(const char *name); +extern void install_params(NODE *paramtab, int pcount); +extern void remove_params(NODE *paramtab, int pcount); +extern NODE *remove_symbol(char *name); +extern void destroy_symbol(char *name); |