aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltable.h b/ltable.h
index 00dfd1c0..be147e41 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 1.23 2000/06/06 16:31:41 roberto Exp roberto $ 2** $Id: ltable.h,v 1.24 2000/08/31 14:08:27 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*/
@@ -24,7 +24,7 @@ TObject *luaH_set (lua_State *L, Hash *t, const TObject *key);
24Node * luaH_next (lua_State *L, const Hash *t, const TObject *r); 24Node * luaH_next (lua_State *L, const Hash *t, const TObject *r);
25TObject *luaH_setint (lua_State *L, Hash *t, int key); 25TObject *luaH_setint (lua_State *L, Hash *t, int key);
26void luaH_setstrnum (lua_State *L, Hash *t, TString *key, Number val); 26void luaH_setstrnum (lua_State *L, Hash *t, TString *key, Number val);
27unsigned long luaH_hash (lua_State *L, const TObject *key); 27luint32 luaH_hash (lua_State *L, const TObject *key);
28const TObject *luaH_getglobal (lua_State *L, const char *name); 28const TObject *luaH_getglobal (lua_State *L, const char *name);
29 29
30/* exported only for debugging */ 30/* exported only for debugging */