1997-09-16 16:25:59 -03:00
|
|
|
/*
|
2000-05-08 16:32:53 -03:00
|
|
|
** $Id: lbuiltin.h,v 1.7 2000/04/17 19:23:12 roberto Exp roberto $
|
1997-09-16 16:25:59 -03:00
|
|
|
** Built-in functions
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lbuiltin_h
|
|
|
|
#define lbuiltin_h
|
|
|
|
|
1999-11-22 11:12:07 -02:00
|
|
|
#include "lua.h"
|
1997-09-16 16:25:59 -03:00
|
|
|
|
1999-12-28 17:23:41 -02:00
|
|
|
void luaB__ALERT (lua_State *L);
|
1999-12-27 15:33:22 -02:00
|
|
|
void luaB__ERRORMESSAGE (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
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);
|
1999-12-14 16:33:29 -02:00
|
|
|
void luaB_error (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
void luaB_foreach (lua_State *L);
|
|
|
|
void luaB_foreachi (lua_State *L);
|
1999-12-14 16:33:29 -02:00
|
|
|
void luaB_getglobal (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
void luaB_getn (lua_State *L);
|
|
|
|
void luaB_gettagmethod (lua_State *L);
|
2000-05-08 16:32:53 -03:00
|
|
|
void luaB_globals (lua_State *L);
|
1999-12-14 16:33:29 -02:00
|
|
|
void luaB_newtag (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
void luaB_next (lua_State *L);
|
|
|
|
void luaB_print (lua_State *L);
|
1999-12-14 16:33:29 -02:00
|
|
|
void luaB_rawgettable (lua_State *L);
|
|
|
|
void luaB_rawsettable (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
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);
|
1999-12-14 16:33:29 -02:00
|
|
|
void luaB_tinsert (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
void luaB_tonumber (lua_State *L);
|
|
|
|
void luaB_tostring (lua_State *L);
|
1999-12-14 16:33:29 -02:00
|
|
|
void luaB_tremove (lua_State *L);
|
2000-03-03 11:58:26 -03:00
|
|
|
void luaB_type (lua_State *L);
|
1999-12-14 16:33:29 -02:00
|
|
|
|
1999-11-22 11:12:07 -02:00
|
|
|
void luaB_predefine (lua_State *L);
|
1997-09-16 16:25:59 -03:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|