summaryrefslogtreecommitdiff
path: root/lstring.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-01 18:31:25 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-12-01 18:31:25 -0200
commit3393fd7f257397199c6ecd143f956a19ee4a0cf7 (patch)
tree3a0114c3f5954b07074bb51d9fa5616bc49b101d /lstring.h
parent00c122cc291cfb24e01a5c00f2c3503a6dfa073e (diff)
downloadlua-github-3393fd7f257397199c6ecd143f956a19ee4a0cf7.tar.gz
first version of "lua_close"
Diffstat (limited to 'lstring.h')
-rw-r--r--lstring.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lstring.h b/lstring.h
index b2c421e2..5f8d01f4 100644
--- a/lstring.h
+++ b/lstring.h
@@ -1,5 +1,5 @@
/*
-** $Id: lstring.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $
+** $Id: lstring.h,v 1.5 1997/11/26 18:53:45 roberto Exp roberto $
** String table (keep all strings handled by Lua)
** See Copyright Notice in lua.h
*/
@@ -20,5 +20,8 @@ TaggedString *luaS_newfixedstring (char *str);
void luaS_rawsetglobal (TaggedString *ts, TObject *newval);
char *luaS_travsymbol (int (*fn)(TObject *));
int luaS_globaldefined (char *name);
+TaggedString *luaS_collectudata (void);
+void luaS_freeall (void);
+
#endif