diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-23 12:32:00 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-23 12:32:00 -0200 |
commit | d490555ec9d5efb886211f735694d4e7dd0c166d (patch) | |
tree | f9b75cdc3a6d4132dddc884280ae218a7f9beb5c /table.h | |
parent | ad0ec203f60df5e2f8a3b294c9e8c1014280b8f1 (diff) | |
download | lua-d490555ec9d5efb886211f735694d4e7dd0c166d.tar.gz lua-d490555ec9d5efb886211f735694d4e7dd0c166d.tar.bz2 lua-d490555ec9d5efb886211f735694d4e7dd0c166d.zip |
garbage collection tag for strings organized in struct TaggedString
Diffstat (limited to 'table.h')
-rw-r--r-- | table.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,16 +1,17 @@ | |||
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.7 1994/11/17 13:58:57 roberto Exp roberto $ | 4 | ** $Id: table.h,v 2.8 1994/11/18 19:27:38 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef table_h | 7 | #ifndef table_h |
8 | #define table_h | 8 | #define table_h |
9 | 9 | ||
10 | #include "tree.h" | 10 | #include "tree.h" |
11 | #include "opcode.h" | ||
11 | 12 | ||
12 | extern Symbol *lua_table; | 13 | extern Symbol *lua_table; |
13 | extern char **lua_constant; | 14 | extern TaggedString **lua_constant; |
14 | 15 | ||
15 | extern char *lua_file[]; | 16 | extern char *lua_file[]; |
16 | extern int lua_nfile; | 17 | extern int lua_nfile; |