diff options
Diffstat (limited to 'lbuiltin.h')
-rw-r--r-- | lbuiltin.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lbuiltin.h b/lbuiltin.h deleted file mode 100644 index 7d8a2236..00000000 --- a/lbuiltin.h +++ /dev/null | |||
@@ -1,44 +0,0 @@ | |||
1 | /* | ||
2 | ** $Id: lbuiltin.h,v 1.9 2000/05/26 19:17:57 roberto Exp roberto $ | ||
3 | ** Built-in functions | ||
4 | ** See Copyright Notice in lua.h | ||
5 | */ | ||
6 | |||
7 | #ifndef lbuiltin_h | ||
8 | #define lbuiltin_h | ||
9 | |||
10 | #include "lua.h" | ||
11 | |||
12 | int luaB__ALERT (lua_State *L); | ||
13 | int luaB__ERRORMESSAGE (lua_State *L); | ||
14 | int luaB_assert (lua_State *L); | ||
15 | int luaB_call (lua_State *L); | ||
16 | int luaB_collectgarbage (lua_State *L); | ||
17 | int luaB_copytagmethods (lua_State *L); | ||
18 | int luaB_dofile (lua_State *L); | ||
19 | int luaB_dostring (lua_State *L); | ||
20 | int luaB_error (lua_State *L); | ||
21 | int luaB_getglobal (lua_State *L); | ||
22 | int luaB_getn (lua_State *L); | ||
23 | int luaB_gettagmethod (lua_State *L); | ||
24 | int luaB_globals (lua_State *L); | ||
25 | int luaB_newtag (lua_State *L); | ||
26 | int luaB_next (lua_State *L); | ||
27 | int luaB_print (lua_State *L); | ||
28 | int luaB_rawget (lua_State *L); | ||
29 | int luaB_rawset (lua_State *L); | ||
30 | int luaB_setglobal (lua_State *L); | ||
31 | int luaB_settag (lua_State *L); | ||
32 | int luaB_settagmethod (lua_State *L); | ||
33 | int luaB_sort (lua_State *L); | ||
34 | int luaB_tag (lua_State *L); | ||
35 | int luaB_tinsert (lua_State *L); | ||
36 | int luaB_tonumber (lua_State *L); | ||
37 | int luaB_tostring (lua_State *L); | ||
38 | int luaB_tremove (lua_State *L); | ||
39 | int luaB_type (lua_State *L); | ||
40 | |||
41 | void luaB_predefine (lua_State *L); | ||
42 | |||
43 | |||
44 | #endif | ||