diff options
Diffstat (limited to 'ltable.h')
-rw-r--r-- | ltable.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.h,v 2.3 2004/10/06 18:34:16 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 2.4 2005/01/04 15:55:12 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,8 @@ | |||
18 | #define key2tval(n) (cast(const TValue *, gkey(n))) | 18 | #define key2tval(n) (cast(const TValue *, gkey(n))) |
19 | 19 | ||
20 | 20 | ||
21 | extern const Node luaH_dummynode; | ||
22 | |||
21 | const TValue *luaH_getnum (Table *t, int key); | 23 | const TValue *luaH_getnum (Table *t, int key); |
22 | TValue *luaH_setnum (lua_State *L, Table *t, int key); | 24 | TValue *luaH_setnum (lua_State *L, Table *t, int key); |
23 | const TValue *luaH_getstr (Table *t, TString *key); | 25 | const TValue *luaH_getstr (Table *t, TString *key); |