aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-08 16:32:53 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-05-08 16:32:53 -0300
commit11a70220670f25a9929439f0b27331f09f05235c (patch)
treec4a962b5a3e53ac6df8894fb3ad2248c4a1256cb /lbuiltin.h
parent35a6ed283881f313152457f24cc6c677122d5058 (diff)
downloadlua-11a70220670f25a9929439f0b27331f09f05235c.tar.gz
lua-11a70220670f25a9929439f0b27331f09f05235c.tar.bz2
lua-11a70220670f25a9929439f0b27331f09f05235c.zip
global variables are stored in a Lua table
Diffstat (limited to 'lbuiltin.h')
-rw-r--r--lbuiltin.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/lbuiltin.h b/lbuiltin.h
index bf2376d3..2bf34105 100644
--- a/lbuiltin.h
+++ b/lbuiltin.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lbuiltin.h,v 1.6 2000/03/03 14:58:26 roberto Exp roberto $ 2** $Id: lbuiltin.h,v 1.7 2000/04/17 19:23:12 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*/
@@ -20,17 +20,14 @@ void luaB_dostring (lua_State *L);
20void luaB_error (lua_State *L); 20void luaB_error (lua_State *L);
21void luaB_foreach (lua_State *L); 21void luaB_foreach (lua_State *L);
22void luaB_foreachi (lua_State *L); 22void luaB_foreachi (lua_State *L);
23void luaB_foreachvar (lua_State *L);
24void luaB_getglobal (lua_State *L); 23void luaB_getglobal (lua_State *L);
25void luaB_getn (lua_State *L); 24void luaB_getn (lua_State *L);
26void luaB_gettagmethod (lua_State *L); 25void luaB_gettagmethod (lua_State *L);
26void luaB_globals (lua_State *L);
27void luaB_newtag (lua_State *L); 27void luaB_newtag (lua_State *L);
28void luaB_next (lua_State *L); 28void luaB_next (lua_State *L);
29void luaB_nextvar (lua_State *L);
30void luaB_print (lua_State *L); 29void luaB_print (lua_State *L);
31void luaB_rawgetglobal (lua_State *L);
32void luaB_rawgettable (lua_State *L); 30void luaB_rawgettable (lua_State *L);
33void luaB_rawsetglobal (lua_State *L);
34void luaB_rawsettable (lua_State *L); 31void luaB_rawsettable (lua_State *L);
35void luaB_setglobal (lua_State *L); 32void luaB_setglobal (lua_State *L);
36void luaB_settag (lua_State *L); 33void luaB_settag (lua_State *L);