1999-01-08 08:49:32 -08:00
|
|
|
/*
|
2018-08-23 10:26:12 -07:00
|
|
|
** $Id: linit.c $
|
2011-01-26 08:30:02 -08:00
|
|
|
** Initialization of libraries for lua.c and other clients
|
1999-01-08 08:49:32 -08:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2004-07-09 07:29:29 -07:00
|
|
|
|
2014-11-02 11:19:04 -08:00
|
|
|
#define linit_c
|
|
|
|
#define LUA_LIB
|
|
|
|
|
2011-01-26 08:30:02 -08:00
|
|
|
/*
|
2009-09-05 05:39:29 -07:00
|
|
|
** If you embed Lua in your program and need to open the standard
|
|
|
|
** libraries, call luaL_openlibs in your program. If you need a
|
|
|
|
** different set of libraries, copy this file to your project and edit
|
|
|
|
** it to suit your needs.
|
2014-12-09 07:00:17 -08:00
|
|
|
**
|
|
|
|
** You can also *preload* libraries, so that a later 'require' can
|
|
|
|
** open the library, which is already linked to the application.
|
|
|
|
** For that, do the following code:
|
|
|
|
**
|
2016-12-04 12:17:24 -08:00
|
|
|
** luaL_getsubtable(L, LUA_REGISTRYINDEX, LUA_PRELOAD_TABLE);
|
2014-12-09 07:00:17 -08:00
|
|
|
** lua_pushcfunction(L, luaopen_modname);
|
|
|
|
** lua_setfield(L, -2, modname);
|
2016-12-04 12:17:24 -08:00
|
|
|
** lua_pop(L, 1); // remove PRELOAD table
|
2011-01-26 08:30:02 -08:00
|
|
|
*/
|
2009-09-05 05:39:29 -07:00
|
|
|
|
2015-01-05 05:48:33 -08:00
|
|
|
#include "lprefix.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2004-07-09 07:29:29 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
#include "lualib.h"
|
|
|
|
#include "lauxlib.h"
|
|
|
|
|
|
|
|
|
2007-06-22 09:59:11 -07:00
|
|
|
/*
|
2009-09-05 05:39:29 -07:00
|
|
|
** these libs are loaded by lua.c and are readily available to any Lua
|
|
|
|
** program
|
2007-06-22 09:59:11 -07:00
|
|
|
*/
|
2009-05-01 06:46:35 -07:00
|
|
|
static const luaL_Reg loadedlibs[] = {
|
2017-06-27 11:32:49 -07:00
|
|
|
{LUA_GNAME, luaopen_base},
|
2005-12-29 08:23:32 -08:00
|
|
|
{LUA_LOADLIBNAME, luaopen_package},
|
2010-06-10 14:30:26 -07:00
|
|
|
{LUA_COLIBNAME, luaopen_coroutine},
|
2004-07-09 07:29:29 -07:00
|
|
|
{LUA_TABLIBNAME, luaopen_table},
|
|
|
|
{LUA_IOLIBNAME, luaopen_io},
|
2004-07-09 08:47:48 -07:00
|
|
|
{LUA_OSLIBNAME, luaopen_os},
|
2004-07-09 07:29:29 -07:00
|
|
|
{LUA_STRLIBNAME, luaopen_string},
|
|
|
|
{LUA_MATHLIBNAME, luaopen_math},
|
2014-05-15 12:28:34 -07:00
|
|
|
{LUA_UTF8LIBNAME, luaopen_utf8},
|
2014-12-06 12:42:58 -08:00
|
|
|
{LUA_DBLIBNAME, luaopen_debug},
|
2007-06-22 09:59:11 -07:00
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-04-13 10:24:20 -07:00
|
|
|
LUALIB_API void luaL_openlibs (lua_State *L) {
|
2009-09-05 05:39:29 -07:00
|
|
|
const luaL_Reg *lib;
|
2014-12-09 07:00:17 -08:00
|
|
|
/* "require" functions from 'loadedlibs' and set results to global table */
|
2009-09-05 05:39:29 -07:00
|
|
|
for (lib = loadedlibs; lib->func; lib++) {
|
2010-07-02 04:38:13 -07:00
|
|
|
luaL_requiref(L, lib->name, lib->func, 1);
|
|
|
|
lua_pop(L, 1); /* remove lib */
|
2004-07-09 07:29:29 -07:00
|
|
|
}
|
|
|
|
}
|
1999-01-08 08:49:32 -08:00
|
|
|
|