aboutsummaryrefslogtreecommitdiff
path: root/lstring.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-14 16:42:57 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-14 16:42:57 -0200
commit12b45c2df21beac17d49a92a4e098cb212238c1a (patch)
tree01cc8c3b861bbf952ddabce68bc556f45d764399 /lstring.h
parent1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (diff)
downloadlua-12b45c2df21beac17d49a92a4e098cb212238c1a.tar.gz
lua-12b45c2df21beac17d49a92a4e098cb212238c1a.tar.bz2
lua-12b45c2df21beac17d49a92a4e098cb212238c1a.zip
luaS_newfixedstring renamed to luaS_newfixed
Diffstat (limited to 'lstring.h')
-rw-r--r--lstring.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstring.h b/lstring.h
index 31feabdb..040a590c 100644
--- a/lstring.h
+++ b/lstring.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.h,v 1.13 1999/11/22 13:12:07 roberto Exp roberto $ 2** $Id: lstring.h,v 1.14 1999/11/26 18:59:20 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*/
@@ -32,7 +32,7 @@ void luaS_freeall (lua_State *L);
32void luaS_free (lua_State *L, TaggedString *ts); 32void luaS_free (lua_State *L, TaggedString *ts);
33TaggedString *luaS_newlstr (lua_State *L, const char *str, long l); 33TaggedString *luaS_newlstr (lua_State *L, const char *str, long l);
34TaggedString *luaS_new (lua_State *L, const char *str); 34TaggedString *luaS_new (lua_State *L, const char *str);
35TaggedString *luaS_newfixedstring (lua_State *L, const char *str); 35TaggedString *luaS_newfixed (lua_State *L, const char *str);
36GlobalVar *luaS_assertglobal (lua_State *L, TaggedString *ts); 36GlobalVar *luaS_assertglobal (lua_State *L, TaggedString *ts);
37GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name); 37GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name);
38int luaS_globaldefined (lua_State *L, const char *name); 38int luaS_globaldefined (lua_State *L, const char *name);