aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lua.h b/lua.h
index a5862ba5..e81030d3 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.63 2000/08/31 14:08:27 roberto Exp roberto $ 2** $Id: lua.h,v 1.64 2000/08/31 20:23:40 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil 4** TeCGraf: Grupo de Tecnologia em Computacao Grafica, PUC-Rio, Brazil
5** e-mail: lua@tecgraf.puc-rio.br 5** e-mail: lua@tecgraf.puc-rio.br
@@ -83,6 +83,7 @@ const char *lua_tostring (lua_State *L, int index);
83size_t lua_strlen (lua_State *L, int index); 83size_t lua_strlen (lua_State *L, int index);
84lua_CFunction lua_tocfunction (lua_State *L, int index); 84lua_CFunction lua_tocfunction (lua_State *L, int index);
85void *lua_touserdata (lua_State *L, int index); 85void *lua_touserdata (lua_State *L, int index);
86const void *lua_topointer (lua_State *L, int index);
86 87
87 88
88/* 89/*
@@ -145,6 +146,7 @@ void lua_unref (lua_State *L, int ref);
145long lua_collectgarbage (lua_State *L, long limit); 146long lua_collectgarbage (lua_State *L, long limit);
146 147
147int lua_next (lua_State *L); 148int lua_next (lua_State *L);
149int lua_getn (lua_State *L, int index);
148 150
149 151
150 152