diff options
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** Module to control static tables | 2 | ** Module to control static tables |
3 | ** TeCGraf - PUC-Rio | 3 | ** TeCGraf - PUC-Rio |
4 | ** $Id: table.h,v 2.15 1996/01/26 18:03:19 roberto Exp roberto $ | 4 | ** $Id: table.h,v 2.16 1996/02/06 16:18:21 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
@@ -13,7 +13,7 @@ | |||
13 | typedef struct | 13 | typedef struct |
14 | { | 14 | { |
15 | Object object; | 15 | Object object; |
16 | TreeNode *varname; | 16 | TaggedString *varname; |
17 | } Symbol; | 17 | } Symbol; |
18 | 18 | ||
19 | 19 | ||
@@ -22,9 +22,10 @@ extern TaggedString **lua_constant; | |||
22 | 22 | ||
23 | void lua_initconstant (void); | 23 | void lua_initconstant (void); |
24 | Word luaI_findsymbolbyname (char *name); | 24 | Word luaI_findsymbolbyname (char *name); |
25 | Word luaI_findsymbol (TreeNode *t); | 25 | Word luaI_findsymbol (TaggedString *t); |
26 | Word luaI_findconstant (TreeNode *t); | 26 | Word luaI_findconstant (TaggedString *t); |
27 | Word luaI_findconstantbyname (char *name); | 27 | Word luaI_findconstantbyname (char *name); |
28 | TaggedString *lua_constcreate (char *str); | ||
28 | int lua_markobject (Object *o); | 29 | int lua_markobject (Object *o); |
29 | Long luaI_collectgarbage (void); | 30 | Long luaI_collectgarbage (void); |
30 | void lua_pack (void); | 31 | void lua_pack (void); |