aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-28 14:57:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-08-28 14:57:04 -0300
commit9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761 (patch)
treeda8d97d954e5ffabf9ff275df725f1e0a3a5b3e6 /lbuiltin.h
parentf1fd9b5c2c21f24d25d7813f431a3495702ebea6 (diff)
downloadlua-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.tar.gz
lua-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.tar.bz2
lua-9fdf73bc9a6b4c6afbfff1d8181fface6b1c6761.zip
first version for new API
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/lbuiltin.h b/lbuiltin.h
index 213f3f3d..7d8a2236 100644
--- a/lbuiltin.h
+++ b/lbuiltin.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.h,v 1.8 2000/05/08 19:32:53 roberto Exp roberto $ 2** $Id: lbuiltin.h,v 1.9 2000/05/26 19:17:57 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,34 +9,34 @@
9 9
10#include "lua.h" 10#include "lua.h"
11 11
12void luaB__ALERT (lua_State *L); 12int luaB__ALERT (lua_State *L);
13void luaB__ERRORMESSAGE (lua_State *L); 13int luaB__ERRORMESSAGE (lua_State *L);
14void luaB_assert (lua_State *L); 14int luaB_assert (lua_State *L);
15void luaB_call (lua_State *L); 15int luaB_call (lua_State *L);
16void luaB_collectgarbage (lua_State *L); 16int luaB_collectgarbage (lua_State *L);
17void luaB_copytagmethods (lua_State *L); 17int luaB_copytagmethods (lua_State *L);
18void luaB_dofile (lua_State *L); 18int luaB_dofile (lua_State *L);
19void luaB_dostring (lua_State *L); 19int luaB_dostring (lua_State *L);
20void luaB_error (lua_State *L); 20int luaB_error (lua_State *L);
21void luaB_getglobal (lua_State *L); 21int luaB_getglobal (lua_State *L);
22void luaB_getn (lua_State *L); 22int luaB_getn (lua_State *L);
23void luaB_gettagmethod (lua_State *L); 23int luaB_gettagmethod (lua_State *L);
24void luaB_globals (lua_State *L); 24int luaB_globals (lua_State *L);
25void luaB_newtag (lua_State *L); 25int luaB_newtag (lua_State *L);
26void luaB_next (lua_State *L); 26int luaB_next (lua_State *L);
27void luaB_print (lua_State *L); 27int luaB_print (lua_State *L);
28void luaB_rawget (lua_State *L); 28int luaB_rawget (lua_State *L);
29void luaB_rawset (lua_State *L); 29int luaB_rawset (lua_State *L);
30void luaB_setglobal (lua_State *L); 30int luaB_setglobal (lua_State *L);
31void luaB_settag (lua_State *L); 31int luaB_settag (lua_State *L);
32void luaB_settagmethod (lua_State *L); 32int luaB_settagmethod (lua_State *L);
33void luaB_sort (lua_State *L); 33int luaB_sort (lua_State *L);
34void luaB_tag (lua_State *L); 34int luaB_tag (lua_State *L);
35void luaB_tinsert (lua_State *L); 35int luaB_tinsert (lua_State *L);
36void luaB_tonumber (lua_State *L); 36int luaB_tonumber (lua_State *L);
37void luaB_tostring (lua_State *L); 37int luaB_tostring (lua_State *L);
38void luaB_tremove (lua_State *L); 38int luaB_tremove (lua_State *L);
39void luaB_type (lua_State *L); 39int luaB_type (lua_State *L);
40 40
41void luaB_predefine (lua_State *L); 41void luaB_predefine (lua_State *L);
42 42