diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
commit | b8a049abed1f021009930a3030b484e70f89f001 (patch) | |
tree | 20d636a16f78b3a4ff357de97d365a8af4ebbdfb /table.h | |
parent | e18f6813330ad141cdac86d194175e75b418df2d (diff) | |
download | lua-b8a049abed1f021009930a3030b484e70f89f001.tar.gz lua-b8a049abed1f021009930a3030b484e70f89f001.tar.bz2 lua-b8a049abed1f021009930a3030b484e70f89f001.zip |
Global variables
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 | ||