aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h44
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
12int luaB__ALERT (lua_State *L);
13int luaB__ERRORMESSAGE (lua_State *L);
14int luaB_assert (lua_State *L);
15int luaB_call (lua_State *L);
16int luaB_collectgarbage (lua_State *L);
17int luaB_copytagmethods (lua_State *L);
18int luaB_dofile (lua_State *L);
19int luaB_dostring (lua_State *L);
20int luaB_error (lua_State *L);
21int luaB_getglobal (lua_State *L);
22int luaB_getn (lua_State *L);
23int luaB_gettagmethod (lua_State *L);
24int luaB_globals (lua_State *L);
25int luaB_newtag (lua_State *L);
26int luaB_next (lua_State *L);
27int luaB_print (lua_State *L);
28int luaB_rawget (lua_State *L);
29int luaB_rawset (lua_State *L);
30int luaB_setglobal (lua_State *L);
31int luaB_settag (lua_State *L);
32int luaB_settagmethod (lua_State *L);
33int luaB_sort (lua_State *L);
34int luaB_tag (lua_State *L);
35int luaB_tinsert (lua_State *L);
36int luaB_tonumber (lua_State *L);
37int luaB_tostring (lua_State *L);
38int luaB_tremove (lua_State *L);
39int luaB_type (lua_State *L);
40
41void luaB_predefine (lua_State *L);
42
43
44#endif