summaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/ltable.h b/ltable.h
index 06cf17c3..292e1e55 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 1.4 1997/11/19 17:29:23 roberto Exp roberto $ 2** $Id: ltable.h,v 1.5 1997/11/26 18:53:45 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,5 +20,8 @@ void luaH_free (Hash *frees);
20TObject *luaH_get (Hash *t, TObject *ref); 20TObject *luaH_get (Hash *t, TObject *ref);
21TObject *luaH_set (Hash *t, TObject *ref); 21TObject *luaH_set (Hash *t, TObject *ref);
22Node *luaH_next (TObject *o, TObject *r); 22Node *luaH_next (TObject *o, TObject *r);
23void luaH_setint (Hash *t, int ref, TObject *val);
24TObject *luaH_getint (Hash *t, int ref);
25
23 26
24#endif 27#endif