From 9a21e81907e49b79ec44677660acf9e35ad308bb Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 31 Aug 2000 18:01:43 -0300 Subject: more builtin functions using official API --- lua.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lua.h') diff --git a/lua.h b/lua.h index a5862ba5..e81030d3 100644 --- a/lua.h +++ b/lua.h @@ -1,5 +1,5 @@ /* -** $Id: lua.h,v 1.63 2000/08/31 14:08:27 roberto Exp roberto $ +** $Id: lua.h,v 1.64 2000/08/31 20:23:40 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 @@ -83,6 +83,7 @@ const char *lua_tostring (lua_State *L, int index); size_t lua_strlen (lua_State *L, int index); lua_CFunction lua_tocfunction (lua_State *L, int index); void *lua_touserdata (lua_State *L, int index); +const void *lua_topointer (lua_State *L, int index); /* @@ -145,6 +146,7 @@ void lua_unref (lua_State *L, int ref); long lua_collectgarbage (lua_State *L, long limit); int lua_next (lua_State *L); +int lua_getn (lua_State *L, int index); -- cgit v1.2.3-55-g6feb