aboutsummaryrefslogtreecommitdiff
path: root/ltable.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-01-04 13:55:12 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-01-04 13:55:12 -0200
commit65726f3e2e226f6a350a5dba643c13c8edd34965 (patch)
treea65e8ac39cb13cbafdfc6870ffaea248e96b25ba /ltable.h
parent9fe2d0266ac3ba30d432ca8edf6116beb94fe2af (diff)
downloadlua-65726f3e2e226f6a350a5dba643c13c8edd34965.tar.gz
lua-65726f3e2e226f6a350a5dba643c13c8edd34965.tar.bz2
lua-65726f3e2e226f6a350a5dba643c13c8edd34965.zip
cleaner interface to `ltable'
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 0b9f6053..3927f088 100644
--- a/ltable.h
+++ b/ltable.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltable.h,v 2.2 2004/03/26 14:02:41 roberto Exp roberto $ 2** $Id: ltable.h,v 2.3 2004/10/06 18:34:16 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,7 +25,7 @@ TValue *luaH_setstr (lua_State *L, Table *t, TString *key);
25const TValue *luaH_get (Table *t, const TValue *key); 25const TValue *luaH_get (Table *t, const TValue *key);
26TValue *luaH_set (lua_State *L, Table *t, const TValue *key); 26TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
27Table *luaH_new (lua_State *L, int narray, int lnhash); 27Table *luaH_new (lua_State *L, int narray, int lnhash);
28void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize); 28void luaH_resizearray (lua_State *L, Table *t, int nasize);
29void luaH_free (lua_State *L, Table *t); 29void luaH_free (lua_State *L, Table *t);
30int luaH_next (lua_State *L, Table *t, StkId key); 30int luaH_next (lua_State *L, Table *t, StkId key);
31 31