diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-07 14:03:33 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-07 14:03:33 -0200 |
| commit | 81e142fc14b6412f5854ffbc25c2a23f60e2e9ba (patch) | |
| tree | 4c9d3e5a275ad2f0feecaa49cd43d3f8f56bc7f5 | |
| parent | 63633c5b5f0cd7ef85ad6988c361916b8ef5d3ac (diff) | |
| download | lua-81e142fc14b6412f5854ffbc25c2a23f60e2e9ba.tar.gz lua-81e142fc14b6412f5854ffbc25c2a23f60e2e9ba.tar.bz2 lua-81e142fc14b6412f5854ffbc25c2a23f60e2e9ba.zip | |
detail (`key' is always on stack)
| -rw-r--r-- | ltable.h | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: ltable.h,v 1.41 2002/03/11 12:45:00 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 1.42 2002/05/27 20:35:40 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,7 +22,7 @@ const TObject *luaH_get (Table *t, const TObject *key); | |||
| 22 | TObject *luaH_set (lua_State *L, Table *t, const TObject *key); | 22 | TObject *luaH_set (lua_State *L, Table *t, const TObject *key); |
| 23 | Table *luaH_new (lua_State *L, int narray, int lnhash); | 23 | Table *luaH_new (lua_State *L, int narray, int lnhash); |
| 24 | void luaH_free (lua_State *L, Table *t); | 24 | void luaH_free (lua_State *L, Table *t); |
| 25 | int luaH_next (lua_State *L, Table *t, TObject *key); | 25 | int luaH_next (lua_State *L, Table *t, StkId key); |
| 26 | 26 | ||
| 27 | /* exported only for debugging */ | 27 | /* exported only for debugging */ |
| 28 | Node *luaH_mainposition (const Table *t, const TObject *key); | 28 | Node *luaH_mainposition (const Table *t, const TObject *key); |
