aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
Diffstat (limited to 'ltable.h')
-rw-r--r--ltable.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ltable.h b/ltable.h
index 4d0faf55..67199ad2 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 1.37 2001/10/25 19:14:14 roberto Exp $ 2** $Id: ltable.h,v 1.1 2001/11/29 22:14:34 rieru Exp rieru $
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,7 +20,6 @@
20const TObject *luaH_getnum (Table *t, int key); 20const TObject *luaH_getnum (Table *t, int key);
21void luaH_setnum (lua_State *L, Table *t, int key, const TObject *val); 21void luaH_setnum (lua_State *L, Table *t, int key, const TObject *val);
22const TObject *luaH_getstr (Table *t, TString *key); 22const TObject *luaH_getstr (Table *t, TString *key);
23void luaH_setstr (lua_State *L, Table *t, TString *key, const TObject *val);
24const TObject *luaH_get (Table *t, const TObject *key); 23const TObject *luaH_get (Table *t, const TObject *key);
25void luaH_set (lua_State *L, Table *t, const TObject *key, const TObject *val); 24void luaH_set (lua_State *L, Table *t, const TObject *key, const TObject *val);
26Table *luaH_new (lua_State *L, int narray, int lnhash); 25Table *luaH_new (lua_State *L, int narray, int lnhash);