aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ltable.h b/ltable.h
index df36e8a6..52053f8f 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 1.20 2000/05/08 19:32:53 roberto Exp roberto $ 2** $Id: ltable.h,v 1.21 2000/06/05 20:07:53 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*/
@@ -25,6 +25,7 @@ void luaH_remove (Hash *t, TObject *key);
25void luaH_set (lua_State *L, Hash *t, const TObject *key, const TObject *val); 25void luaH_set (lua_State *L, Hash *t, const TObject *key, const TObject *val);
26int luaH_pos (lua_State *L, const Hash *t, const TObject *r); 26int luaH_pos (lua_State *L, const Hash *t, const TObject *r);
27void luaH_setint (lua_State *L, Hash *t, int key, const TObject *val); 27void luaH_setint (lua_State *L, Hash *t, int key, const TObject *val);
28void luaH_setstr (lua_State *L, Hash *t, TString *key, const TObject *val);
28unsigned long luaH_hash (lua_State *L, const TObject *key); 29unsigned long luaH_hash (lua_State *L, const TObject *key);
29const TObject *luaH_getglobal (lua_State *L, const char *name); 30const TObject *luaH_getglobal (lua_State *L, const char *name);
30 31