From 9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 28 Aug 2000 14:57:04 -0300 Subject: first version for new API --- lbuiltin.h | 58 +++++++++++++++++++++++++++++----------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'lbuiltin.h') diff --git a/lbuiltin.h b/lbuiltin.h index 213f3f3d..7d8a2236 100644 --- a/lbuiltin.h +++ b/lbuiltin.h @@ -1,5 +1,5 @@ /* -** $Id: lbuiltin.h,v 1.8 2000/05/08 19:32:53 roberto Exp roberto $ +** $Id: lbuiltin.h,v 1.9 2000/05/26 19:17:57 roberto Exp roberto $ ** Built-in functions ** See Copyright Notice in lua.h */ @@ -9,34 +9,34 @@ #include "lua.h" -void luaB__ALERT (lua_State *L); -void luaB__ERRORMESSAGE (lua_State *L); -void luaB_assert (lua_State *L); -void luaB_call (lua_State *L); -void luaB_collectgarbage (lua_State *L); -void luaB_copytagmethods (lua_State *L); -void luaB_dofile (lua_State *L); -void luaB_dostring (lua_State *L); -void luaB_error (lua_State *L); -void luaB_getglobal (lua_State *L); -void luaB_getn (lua_State *L); -void luaB_gettagmethod (lua_State *L); -void luaB_globals (lua_State *L); -void luaB_newtag (lua_State *L); -void luaB_next (lua_State *L); -void luaB_print (lua_State *L); -void luaB_rawget (lua_State *L); -void luaB_rawset (lua_State *L); -void luaB_setglobal (lua_State *L); -void luaB_settag (lua_State *L); -void luaB_settagmethod (lua_State *L); -void luaB_sort (lua_State *L); -void luaB_tag (lua_State *L); -void luaB_tinsert (lua_State *L); -void luaB_tonumber (lua_State *L); -void luaB_tostring (lua_State *L); -void luaB_tremove (lua_State *L); -void luaB_type (lua_State *L); +int luaB__ALERT (lua_State *L); +int luaB__ERRORMESSAGE (lua_State *L); +int luaB_assert (lua_State *L); +int luaB_call (lua_State *L); +int luaB_collectgarbage (lua_State *L); +int luaB_copytagmethods (lua_State *L); +int luaB_dofile (lua_State *L); +int luaB_dostring (lua_State *L); +int luaB_error (lua_State *L); +int luaB_getglobal (lua_State *L); +int luaB_getn (lua_State *L); +int luaB_gettagmethod (lua_State *L); +int luaB_globals (lua_State *L); +int luaB_newtag (lua_State *L); +int luaB_next (lua_State *L); +int luaB_print (lua_State *L); +int luaB_rawget (lua_State *L); +int luaB_rawset (lua_State *L); +int luaB_setglobal (lua_State *L); +int luaB_settag (lua_State *L); +int luaB_settagmethod (lua_State *L); +int luaB_sort (lua_State *L); +int luaB_tag (lua_State *L); +int luaB_tinsert (lua_State *L); +int luaB_tonumber (lua_State *L); +int luaB_tostring (lua_State *L); +int luaB_tremove (lua_State *L); +int luaB_type (lua_State *L); void luaB_predefine (lua_State *L); -- cgit v1.2.3-55-g6feb