diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-04 13:55:12 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-01-04 13:55:12 -0200 |
commit | 65726f3e2e226f6a350a5dba643c13c8edd34965 (patch) | |
tree | a65e8ac39cb13cbafdfc6870ffaea248e96b25ba /ltable.h | |
parent | 9fe2d0266ac3ba30d432ca8edf6116beb94fe2af (diff) | |
download | lua-65726f3e2e226f6a350a5dba643c13c8edd34965.tar.gz lua-65726f3e2e226f6a350a5dba643c13c8edd34965.tar.bz2 lua-65726f3e2e226f6a350a5dba643c13c8edd34965.zip |
cleaner interface to `ltable'
Diffstat (limited to 'ltable.h')
-rw-r--r-- | ltable.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.h,v 2.2 2004/03/26 14:02:41 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 2.3 2004/10/06 18:34:16 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 | */ |
@@ -25,7 +25,7 @@ TValue *luaH_setstr (lua_State *L, Table *t, TString *key); | |||
25 | const TValue *luaH_get (Table *t, const TValue *key); | 25 | const TValue *luaH_get (Table *t, const TValue *key); |
26 | TValue *luaH_set (lua_State *L, Table *t, const TValue *key); | 26 | TValue *luaH_set (lua_State *L, Table *t, const TValue *key); |
27 | Table *luaH_new (lua_State *L, int narray, int lnhash); | 27 | Table *luaH_new (lua_State *L, int narray, int lnhash); |
28 | void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); | 28 | void luaH_resizearray (lua_State *L, Table *t, int nasize); |
29 | void luaH_free (lua_State *L, Table *t); | 29 | void luaH_free (lua_State *L, Table *t); |
30 | int luaH_next (lua_State *L, Table *t, StkId key); | 30 | int luaH_next (lua_State *L, Table *t, StkId key); |
31 | 31 | ||