aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.h
diff options
context:
space:
mode:
authorjohn haque <j.eh@mchsi.com>2011-08-20 08:28:02 -0500
committerjohn haque <j.eh@mchsi.com>2011-10-12 07:33:05 -0500
commit1fea520248b42ca995c8797698c60301ea42ffe9 (patch)
tree1aa80c13392c25aa6bf3eb931fec9c83a0621e25 /symbol.h
parentf757e147f1ae8254669b3222bc24a39ee8ff9b8f (diff)
downloadegawk-1fea520248b42ca995c8797698c60301ea42ffe9.tar.gz
egawk-1fea520248b42ca995c8797698c60301ea42ffe9.tar.bz2
egawk-1fea520248b42ca995c8797698c60301ea42ffe9.zip
Speed/memory performance improvements.
Diffstat (limited to 'symbol.h')
-rw-r--r--symbol.h6
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);