From 3c9d999424520c809e05bee11d81788b488434f6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 3 Mar 2000 11:58:26 -0300 Subject: many details (most by lhf). --- lbuiltin.h | 51 +++++++++++++++++++++++++-------------------------- 1 file changed, 25 insertions(+), 26 deletions(-) (limited to 'lbuiltin.h') diff --git a/lbuiltin.h b/lbuiltin.h index 565cd3ac..031bcd82 100644 --- a/lbuiltin.h +++ b/lbuiltin.h @@ -1,5 +1,5 @@ /* -** $Id: lbuiltin.h,v 1.4 1999/12/27 17:33:22 roberto Exp roberto $ +** $Id: lbuiltin.h,v 1.5 1999/12/28 19:23:41 roberto Exp roberto $ ** Built-in functions ** See Copyright Notice in lua.h */ @@ -11,39 +11,38 @@ void luaB__ALERT (lua_State *L); void luaB__ERRORMESSAGE (lua_State *L); -void luaB_print (lua_State *L); -void luaB_tonumber (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_setglobal (lua_State *L); -void luaB_rawsetglobal (lua_State *L); +void luaB_foreach (lua_State *L); +void luaB_foreachi (lua_State *L); +void luaB_foreachvar (lua_State *L); void luaB_getglobal (lua_State *L); -void luaB_rawgetglobal (lua_State *L); -void luaB_tag (lua_State *L); -void luaB_settag (lua_State *L); +void luaB_getn (lua_State *L); +void luaB_gettagmethod (lua_State *L); void luaB_newtag (lua_State *L); -void luaB_copytagmethods (lua_State *L); +void luaB_next (lua_State *L); +void luaB_nextvar (lua_State *L); +void luaB_print (lua_State *L); +void luaB_rawgetglobal (lua_State *L); void luaB_rawgettable (lua_State *L); +void luaB_rawsetglobal (lua_State *L); void luaB_rawsettable (lua_State *L); -void luaB_settagmethod (lua_State *L); -void luaB_gettagmethod (lua_State *L); void luaB_seterrormethod (lua_State *L); -void luaB_collectgarbage (lua_State *L); -void luaB_type (lua_State *L); -void luaB_dostring (lua_State *L); -void luaB_dofile (lua_State *L); -void luaB_call (lua_State *L); -void luaB_nextvar (lua_State *L); -void luaB_next (lua_State *L); -void luaB_tostring (lua_State *L); -void luaB_assert (lua_State *L); -void luaB_foreachi (lua_State *L); -void luaB_foreach (lua_State *L); -void luaB_foreachvar (lua_State *L); -void luaB_getn (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_sort (lua_State *L); - +void luaB_type (lua_State *L); void luaB_predefine (lua_State *L); -- cgit v1.2.3-55-g6feb