This source file includes following definitions.
- luaL_openlibs
1
2
3
4
5
6
7
8 #define linit_c
9 #define LUA_LIB
10
11 #include "lua.h"
12
13 #include "lualib.h"
14 #include "lauxlib.h"
15
16
17 static const luaL_Reg lualibs[] = {
18 {"", (void*)luaopen_base},
19 {LUA_LOADLIBNAME, (void*)luaopen_package},
20 {LUA_TABLIBNAME, (void*)luaopen_table},
21 {LUA_IOLIBNAME, (void*)luaopen_io},
22 {LUA_OSLIBNAME, (void*)luaopen_os},
23 {LUA_STRLIBNAME, (void*)luaopen_string},
24 {LUA_MATHLIBNAME, (void*)luaopen_math},
25 {LUA_IMATHLIBNAME, (void*)luaopen_imath},
26 {LUA_DBLIBNAME, (void*)luaopen_debug},
27 {NULL, NULL}
28 };
29
30
31 LUALIB_API void luaL_openlibs (lua_State *L) {
32 const luaL_Reg *lib = lualibs;
33 for (; lib->func; lib++) {
34 lua_pushcfunction(L, lib->func);
35 lua_pushstring(L, lib->name);
36 lua_call(L, 1, 0);
37 }
38 }
39