diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-08-26 09:04:13 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-08-26 09:04:13 -0300 |
commit | b1141427991dea7a96597f2aacdedf243b60decd (patch) | |
tree | 28a56414da88099502ae7d182b44e5201856c787 /ltable.h | |
parent | 4b2e71ddb674c3bb22f549743721155ddaeb9b5d (diff) | |
download | lua-b1141427991dea7a96597f2aacdedf243b60decd.tar.gz lua-b1141427991dea7a96597f2aacdedf243b60decd.tar.bz2 lua-b1141427991dea7a96597f2aacdedf243b60decd.zip |
new auxiliary function `luaH_setstr'
Diffstat (limited to 'ltable.h')
-rw-r--r-- | ltable.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 @@ | |||
18 | const TObject *luaH_getnum (Table *t, int key); | 18 | const TObject *luaH_getnum (Table *t, int key); |
19 | TObject *luaH_setnum (lua_State *L, Table *t, int key); | 19 | TObject *luaH_setnum (lua_State *L, Table *t, int key); |
20 | const TObject *luaH_getstr (Table *t, TString *key); | 20 | const TObject *luaH_getstr (Table *t, TString *key); |
21 | TObject *luaH_setstr (lua_State *L, Table *t, TString *key); | ||
21 | const TObject *luaH_get (Table *t, const TObject *key); | 22 | const TObject *luaH_get (Table *t, const TObject *key); |
22 | TObject *luaH_set (lua_State *L, Table *t, const TObject *key); | 23 | TObject *luaH_set (lua_State *L, Table *t, const TObject *key); |
23 | Table *luaH_new (lua_State *L, int narray, int lnhash); | 24 | Table *luaH_new (lua_State *L, int narray, int lnhash); |