diff options
Diffstat (limited to 'table.h')
| -rw-r--r-- | table.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/table.h b/table.h deleted file mode 100644 index 93d549f9..00000000 --- a/table.h +++ /dev/null | |||
| @@ -1,37 +0,0 @@ | |||
| 1 | /* | ||
| 2 | ** Module to control static tables | ||
| 3 | ** TeCGraf - PUC-Rio | ||
| 4 | ** $Id: table.h,v 2.25 1997/05/26 14:42:36 roberto Exp roberto $ | ||
| 5 | */ | ||
| 6 | |||
| 7 | #ifndef table_h | ||
| 8 | #define table_h | ||
| 9 | |||
| 10 | #include "tree.h" | ||
| 11 | #include "opcode.h" | ||
| 12 | |||
| 13 | typedef struct | ||
| 14 | { | ||
| 15 | TObject object; | ||
| 16 | TaggedString *varname; | ||
| 17 | } Symbol; | ||
| 18 | |||
| 19 | |||
| 20 | extern Symbol *lua_table; | ||
| 21 | extern Word lua_ntable; | ||
| 22 | |||
| 23 | void luaI_initsymbol (void); | ||
| 24 | void luaI_initconstant (void); | ||
| 25 | Word luaI_findsymbolbyname (char *name); | ||
| 26 | Word luaI_findsymbol (TaggedString *t); | ||
| 27 | int luaI_globaldefined (char *name); | ||
| 28 | void luaI_nextvar (void); | ||
| 29 | TaggedString *luaI_createtempstring (char *name); | ||
| 30 | void luaI_releasestring (TaggedString *t); | ||
| 31 | void luaI_fixstring (TaggedString *t); | ||
| 32 | int lua_markobject (TObject *o); | ||
| 33 | int luaI_ismarked (TObject *o); | ||
| 34 | void lua_pack (void); | ||
| 35 | |||
| 36 | |||
| 37 | #endif | ||
