diff options
Diffstat (limited to 'ltable.h')
-rw-r--r-- | ltable.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.h,v 1.10 1999/01/25 17:40:10 roberto Exp roberto $ | 2 | ** $Id: ltable.h,v 1.11 1999/02/23 14:57:28 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 | */ |
@@ -20,11 +20,11 @@ | |||
20 | 20 | ||
21 | Hash *luaH_new (int nhash); | 21 | Hash *luaH_new (int nhash); |
22 | void luaH_free (Hash *frees); | 22 | void luaH_free (Hash *frees); |
23 | Node *luaH_present (Hash *t, TObject *key); | 23 | Node *luaH_present (const Hash *t, const TObject *key); |
24 | void luaH_set (Hash *t, TObject *ref, TObject *val); | 24 | void luaH_set (Hash *t, const TObject *ref, const TObject *val); |
25 | int luaH_pos (Hash *t, TObject *r); | 25 | int luaH_pos (const Hash *t, const TObject *r); |
26 | void luaH_setint (Hash *t, int ref, TObject *val); | 26 | void luaH_setint (Hash *t, int ref, const TObject *val); |
27 | TObject *luaH_getint (Hash *t, int ref); | 27 | TObject *luaH_getint (const Hash *t, int ref); |
28 | 28 | ||
29 | 29 | ||
30 | #endif | 30 | #endif |