blob: 0e42c1384ffb61a58ff0c61d522e6b842f22e667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
** $Id: lbuiltin.h,v 1.2 1999/11/22 13:12:07 roberto Exp roberto $
** Built-in functions
** See Copyright Notice in lua.h
*/
#ifndef lbuiltin_h
#define lbuiltin_h
#include "lua.h"
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_error (lua_State *L);
void luaB_setglobal (lua_State *L);
void luaB_rawsetglobal (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_newtag (lua_State *L);
void luaB_copytagmethods (lua_State *L);
void luaB_rawgettable (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_tinsert (lua_State *L);
void luaB_tremove (lua_State *L);
void luaB_sort (lua_State *L);
void luaB_predefine (lua_State *L);
#endif
|