diff options
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 10 |
1 files changed, 4 insertions, 6 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.24 1997/04/07 14:48:53 roberto Exp roberto $ | 4 | ** $Id: table.h,v 2.25 1997/05/26 14:42:36 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
@@ -19,18 +19,16 @@ typedef struct | |||
19 | 19 | ||
20 | extern Symbol *lua_table; | 20 | extern Symbol *lua_table; |
21 | extern Word lua_ntable; | 21 | extern Word lua_ntable; |
22 | extern TaggedString **lua_constant; | ||
23 | extern Word lua_nconstant; | ||
24 | 22 | ||
25 | void luaI_initsymbol (void); | 23 | void luaI_initsymbol (void); |
26 | void luaI_initconstant (void); | 24 | void luaI_initconstant (void); |
27 | Word luaI_findsymbolbyname (char *name); | 25 | Word luaI_findsymbolbyname (char *name); |
28 | Word luaI_findsymbol (TaggedString *t); | 26 | Word luaI_findsymbol (TaggedString *t); |
29 | Word luaI_findconstant (TaggedString *t); | ||
30 | Word luaI_findconstantbyname (char *name); | ||
31 | int luaI_globaldefined (char *name); | 27 | int luaI_globaldefined (char *name); |
32 | void luaI_nextvar (void); | 28 | void luaI_nextvar (void); |
33 | TaggedString *luaI_createfixedstring (char *str); | 29 | TaggedString *luaI_createtempstring (char *name); |
30 | void luaI_releasestring (TaggedString *t); | ||
31 | void luaI_fixstring (TaggedString *t); | ||
34 | int lua_markobject (TObject *o); | 32 | int lua_markobject (TObject *o); |
35 | int luaI_ismarked (TObject *o); | 33 | int luaI_ismarked (TObject *o); |
36 | void lua_pack (void); | 34 | void lua_pack (void); |