summaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-05 17:15:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-05 17:15:33 -0300
commit292c9530183a8e9939cff9a7d30fc50e85031698 (patch)
tree20dc1c90af03ef60396d6a8df737369fb8238f21 /ltable.h
parentc542aac0b935a65203244c130cdfa700113f0bc8 (diff)
downloadlua-github-292c9530183a8e9939cff9a7d30fc50e85031698.tar.gz
new auxiliar function `luaH_setstr'
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltable.h b/ltable.h
index df36e8a6..52053f8f 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
/*
-** $Id: ltable.h,v 1.20 2000/05/08 19:32:53 roberto Exp roberto $
+** $Id: ltable.h,v 1.21 2000/06/05 20:07:53 roberto Exp roberto $
** Lua tables (hash)
** See Copyright Notice in lua.h
*/
@@ -25,6 +25,7 @@ void luaH_remove (Hash *t, TObject *key);
void luaH_set (lua_State *L, Hash *t, const TObject *key, const TObject *val);
int luaH_pos (lua_State *L, const Hash *t, const TObject *r);
void luaH_setint (lua_State *L, Hash *t, int key, const TObject *val);
+void luaH_setstr (lua_State *L, Hash *t, TString *key, const TObject *val);
unsigned long luaH_hash (lua_State *L, const TObject *key);
const TObject *luaH_getglobal (lua_State *L, const char *name);