diff options
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.45 2003/08/26 12:04:13 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 2.1 2003/12/10 12:13:36 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 | */ |
@@ -22,6 +22,7 @@ TValue *luaH_setstr (lua_State *L, Table *t, TString *key); | |||
22 | const TValue *luaH_get (Table *t, const TValue *key); | 22 | const TValue *luaH_get (Table *t, const TValue *key); |
23 | TValue *luaH_set (lua_State *L, Table *t, const TValue *key); | 23 | TValue *luaH_set (lua_State *L, Table *t, const TValue *key); |
24 | Table *luaH_new (lua_State *L, int narray, int lnhash); | 24 | Table *luaH_new (lua_State *L, int narray, int lnhash); |
25 | void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); | ||
25 | void luaH_free (lua_State *L, Table *t); | 26 | void luaH_free (lua_State *L, Table *t); |
26 | int luaH_next (lua_State *L, Table *t, StkId key); | 27 | int luaH_next (lua_State *L, Table *t, StkId key); |
27 | 28 | ||