diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:33:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:33:29 -0200 |
commit | 1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (patch) | |
tree | 00a96c96d331417ba781b605c6c10d8daae01938 /lbuiltin.h | |
parent | e6d56cd2d844174bd40af4c44c0f68e2115e5876 (diff) | |
download | lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.gz lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.bz2 lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.zip |
many details + code redistribution
Diffstat (limited to 'lbuiltin.h')
-rw-r--r-- | lbuiltin.h | 38 |
1 files changed, 37 insertions, 1 deletions
@@ -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 | ||
12 | void luaB_alert (lua_State *L); | ||
13 | void luaB_ERRORMESSAGE (lua_State *L); | ||
14 | void luaB_print (lua_State *L); | ||
15 | void luaB_tonumber (lua_State *L); | ||
16 | void luaB_error (lua_State *L); | ||
17 | void luaB_setglobal (lua_State *L); | ||
18 | void luaB_rawsetglobal (lua_State *L); | ||
19 | void luaB_getglobal (lua_State *L); | ||
20 | void luaB_rawgetglobal (lua_State *L); | ||
21 | void luaB_tag (lua_State *L); | ||
22 | void luaB_settag (lua_State *L); | ||
23 | void luaB_newtag (lua_State *L); | ||
24 | void luaB_copytagmethods (lua_State *L); | ||
25 | void luaB_rawgettable (lua_State *L); | ||
26 | void luaB_rawsettable (lua_State *L); | ||
27 | void luaB_settagmethod (lua_State *L); | ||
28 | void luaB_gettagmethod (lua_State *L); | ||
29 | void luaB_seterrormethod (lua_State *L); | ||
30 | void luaB_collectgarbage (lua_State *L); | ||
31 | void luaB_type (lua_State *L); | ||
32 | void luaB_dostring (lua_State *L); | ||
33 | void luaB_dofile (lua_State *L); | ||
34 | void luaB_call (lua_State *L); | ||
35 | void luaB_nextvar (lua_State *L); | ||
36 | void luaB_next (lua_State *L); | ||
37 | void luaB_tostring (lua_State *L); | ||
38 | void luaB_assert (lua_State *L); | ||
39 | void luaB_foreachi (lua_State *L); | ||
40 | void luaB_foreach (lua_State *L); | ||
41 | void luaB_foreachvar (lua_State *L); | ||
42 | void luaB_getn (lua_State *L); | ||
43 | void luaB_tinsert (lua_State *L); | ||
44 | void luaB_tremove (lua_State *L); | ||
45 | void luaB_sort (lua_State *L); | ||
46 | |||
47 | |||
12 | void luaB_predefine (lua_State *L); | 48 | void luaB_predefine (lua_State *L); |
13 | 49 | ||
14 | 50 | ||