diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-04 13:27:53 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-04 13:27:53 -0200 |
commit | 45cad43c3fedb13a5e424429fe94dc78ba01a118 (patch) | |
tree | e5dae021aa66accc06b6941add38bf2d495c6440 /lstring.h | |
parent | dad5a01fb07e8a654f195ec3a9ca271cd5ee32e3 (diff) | |
download | lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.tar.gz lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.tar.bz2 lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.zip |
"lua_open": now lua has an explicit open operation.
Diffstat (limited to 'lstring.h')
-rw-r--r-- | lstring.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstring.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ | 2 | ** $Id: lstring.h,v 1.2 1997/09/26 15:02:26 roberto Exp roberto $ |
3 | ** String table (keep all strings handled by Lua) | 3 | ** String table (keep all strings handled by Lua) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -12,6 +12,8 @@ | |||
12 | 12 | ||
13 | extern GCnode luaS_root; | 13 | extern GCnode luaS_root; |
14 | 14 | ||
15 | |||
16 | void luaS_init (void); | ||
15 | TaggedString *luaS_createudata (void *udata, int tag); | 17 | TaggedString *luaS_createudata (void *udata, int tag); |
16 | TaggedString *luaS_collector (void); | 18 | TaggedString *luaS_collector (void); |
17 | void luaS_free (TaggedString *l); | 19 | void luaS_free (TaggedString *l); |