aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h38
1 files changed, 37 insertions, 1 deletions
diff --git a/lbuiltin.h b/lbuiltin.h
index 6a4915d0..0e42c138 100644
--- a/lbuiltin.h
+++ b/lbuiltin.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ 2** $Id: lbuiltin.h,v 1.2 1999/11/22 13:12:07 roberto Exp roberto $
3** Built-in functions 3** Built-in functions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -9,6 +9,42 @@
9 9
10#include "lua.h" 10#include "lua.h"
11 11
12void luaB_alert (lua_State *L);
13void luaB_ERRORMESSAGE (lua_State *L);
14void luaB_print (lua_State *L);
15void luaB_tonumber (lua_State *L);
16void luaB_error (lua_State *L);
17void luaB_setglobal (lua_State *L);
18void luaB_rawsetglobal (lua_State *L);
19void luaB_getglobal (lua_State *L);
20void luaB_rawgetglobal (lua_State *L);
21void luaB_tag (lua_State *L);
22void luaB_settag (lua_State *L);
23void luaB_newtag (lua_State *L);
24void luaB_copytagmethods (lua_State *L);
25void luaB_rawgettable (lua_State *L);
26void luaB_rawsettable (lua_State *L);
27void luaB_settagmethod (lua_State *L);
28void luaB_gettagmethod (lua_State *L);
29void luaB_seterrormethod (lua_State *L);
30void luaB_collectgarbage (lua_State *L);
31void luaB_type (lua_State *L);
32void luaB_dostring (lua_State *L);
33void luaB_dofile (lua_State *L);
34void luaB_call (lua_State *L);
35void luaB_nextvar (lua_State *L);
36void luaB_next (lua_State *L);
37void luaB_tostring (lua_State *L);
38void luaB_assert (lua_State *L);
39void luaB_foreachi (lua_State *L);
40void luaB_foreach (lua_State *L);
41void luaB_foreachvar (lua_State *L);
42void luaB_getn (lua_State *L);
43void luaB_tinsert (lua_State *L);
44void luaB_tremove (lua_State *L);
45void luaB_sort (lua_State *L);
46
47
12void luaB_predefine (lua_State *L); 48void luaB_predefine (lua_State *L);
13 49
14 50