aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h51
1 files changed, 25 insertions, 26 deletions
diff --git a/lbuiltin.h b/lbuiltin.h
index 565cd3ac..031bcd82 100644
--- a/lbuiltin.h
+++ b/lbuiltin.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.h,v 1.4 1999/12/27 17:33:22 roberto Exp roberto $ 2** $Id: lbuiltin.h,v 1.5 1999/12/28 19:23:41 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*/
@@ -11,39 +11,38 @@
11 11
12void luaB__ALERT (lua_State *L); 12void luaB__ALERT (lua_State *L);
13void luaB__ERRORMESSAGE (lua_State *L); 13void luaB__ERRORMESSAGE (lua_State *L);
14void luaB_print (lua_State *L); 14void luaB_assert (lua_State *L);
15void luaB_tonumber (lua_State *L); 15void luaB_call (lua_State *L);
16void luaB_collectgarbage (lua_State *L);
17void luaB_copytagmethods (lua_State *L);
18void luaB_dofile (lua_State *L);
19void luaB_dostring (lua_State *L);
16void luaB_error (lua_State *L); 20void luaB_error (lua_State *L);
17void luaB_setglobal (lua_State *L); 21void luaB_foreach (lua_State *L);
18void luaB_rawsetglobal (lua_State *L); 22void luaB_foreachi (lua_State *L);
23void luaB_foreachvar (lua_State *L);
19void luaB_getglobal (lua_State *L); 24void luaB_getglobal (lua_State *L);
20void luaB_rawgetglobal (lua_State *L); 25void luaB_getn (lua_State *L);
21void luaB_tag (lua_State *L); 26void luaB_gettagmethod (lua_State *L);
22void luaB_settag (lua_State *L);
23void luaB_newtag (lua_State *L); 27void luaB_newtag (lua_State *L);
24void luaB_copytagmethods (lua_State *L); 28void luaB_next (lua_State *L);
29void luaB_nextvar (lua_State *L);
30void luaB_print (lua_State *L);
31void luaB_rawgetglobal (lua_State *L);
25void luaB_rawgettable (lua_State *L); 32void luaB_rawgettable (lua_State *L);
33void luaB_rawsetglobal (lua_State *L);
26void luaB_rawsettable (lua_State *L); 34void luaB_rawsettable (lua_State *L);
27void luaB_settagmethod (lua_State *L);
28void luaB_gettagmethod (lua_State *L);
29void luaB_seterrormethod (lua_State *L); 35void luaB_seterrormethod (lua_State *L);
30void luaB_collectgarbage (lua_State *L); 36void luaB_setglobal (lua_State *L);
31void luaB_type (lua_State *L); 37void luaB_settag (lua_State *L);
32void luaB_dostring (lua_State *L); 38void luaB_settagmethod (lua_State *L);
33void luaB_dofile (lua_State *L); 39void luaB_sort (lua_State *L);
34void luaB_call (lua_State *L); 40void luaB_tag (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); 41void luaB_tinsert (lua_State *L);
42void luaB_tonumber (lua_State *L);
43void luaB_tostring (lua_State *L);
44void luaB_tremove (lua_State *L); 44void luaB_tremove (lua_State *L);
45void luaB_sort (lua_State *L); 45void luaB_type (lua_State *L);
46
47 46
48void luaB_predefine (lua_State *L); 47void luaB_predefine (lua_State *L);
49 48