aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-08-26 09:04:13 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-08-26 09:04:13 -0300
commitb1141427991dea7a96597f2aacdedf243b60decd (patch)
tree28a56414da88099502ae7d182b44e5201856c787 /ltable.h
parent4b2e71ddb674c3bb22f549743721155ddaeb9b5d (diff)
downloadlua-b1141427991dea7a96597f2aacdedf243b60decd.tar.gz
lua-b1141427991dea7a96597f2aacdedf243b60decd.tar.bz2
lua-b1141427991dea7a96597f2aacdedf243b60decd.zip
new auxiliary 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 3218b69b..5a4076bc 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 1.43 2002/11/07 16:03:33 roberto Exp roberto $ 2** $Id: ltable.h,v 1.44 2003/03/18 12:50:04 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -18,6 +18,7 @@
18const TObject *luaH_getnum (Table *t, int key); 18const TObject *luaH_getnum (Table *t, int key);
19TObject *luaH_setnum (lua_State *L, Table *t, int key); 19TObject *luaH_setnum (lua_State *L, Table *t, int key);
20const TObject *luaH_getstr (Table *t, TString *key); 20const TObject *luaH_getstr (Table *t, TString *key);
21TObject *luaH_setstr (lua_State *L, Table *t, TString *key);
21const TObject *luaH_get (Table *t, const TObject *key); 22const TObject *luaH_get (Table *t, const TObject *key);
22TObject *luaH_set (lua_State *L, Table *t, const TObject *key); 23TObject *luaH_set (lua_State *L, Table *t, const TObject *key);
23Table *luaH_new (lua_State *L, int narray, int lnhash); 24Table *luaH_new (lua_State *L, int narray, int lnhash);