From f04c83e0759b1059545ea0526c5999c35cb1793f Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 23 Feb 1999 11:57:28 -0300 Subject: new function "lua_next" (+ new implementation for "next") --- lua.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index 237c72eb..c6374a44 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.27 1999/02/09 15:59:22 roberto Exp roberto $ +** $Id: lua.h,v 1.28 1999/02/22 19:13:12 roberto Exp roberto $ ** Lua - An Extensible Extension Language ** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil ** e-mail: lua@tecgraf.puc-rio.br @@ -90,6 +90,8 @@ lua_Object lua_rawgettable (void); /* In: table, index */ int lua_tag (lua_Object object); char *lua_nextvar (char *varname); /* Out: value */ +int lua_next (lua_Object o, int i); + /* Out: ref, value */ int lua_ref (int lock); /* In: value */ lua_Object lua_getref (int ref); -- cgit v1.2.3-55-g6feb