1993-07-28 06:18:00 -07:00
|
|
|
/*
|
2018-08-23 10:26:12 -07:00
|
|
|
** $Id: lualib.h $
|
1997-09-16 12:25:59 -07:00
|
|
|
** Lua standard libraries
|
|
|
|
** See Copyright Notice in lua.h
|
1993-07-28 06:18:00 -07:00
|
|
|
*/
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1993-07-28 06:18:00 -07:00
|
|
|
#ifndef lualib_h
|
|
|
|
#define lualib_h
|
|
|
|
|
1996-04-30 14:13:55 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-09-12 06:46:59 -07:00
|
|
|
|
2017-01-12 09:14:26 -08:00
|
|
|
/* version suffix for environment variable names */
|
|
|
|
#define LUA_VERSUFFIX "_" LUA_VERSION_MAJOR "_" LUA_VERSION_MINOR
|
|
|
|
|
2004-05-28 11:35:05 -07:00
|
|
|
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_base) (lua_State *L);
|
2002-06-05 10:24:04 -07:00
|
|
|
|
2010-06-10 14:30:26 -07:00
|
|
|
#define LUA_COLIBNAME "coroutine"
|
|
|
|
LUAMOD_API int (luaopen_coroutine) (lua_State *L);
|
|
|
|
|
2002-06-05 10:24:04 -07:00
|
|
|
#define LUA_TABLIBNAME "table"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_table) (lua_State *L);
|
2002-06-05 10:24:04 -07:00
|
|
|
|
|
|
|
#define LUA_IOLIBNAME "io"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_io) (lua_State *L);
|
2002-06-05 10:24:04 -07:00
|
|
|
|
2004-07-09 08:47:48 -07:00
|
|
|
#define LUA_OSLIBNAME "os"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_os) (lua_State *L);
|
2004-07-09 08:47:48 -07:00
|
|
|
|
2002-06-05 10:24:04 -07:00
|
|
|
#define LUA_STRLIBNAME "string"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_string) (lua_State *L);
|
2002-06-05 10:24:04 -07:00
|
|
|
|
2014-02-06 09:32:33 -08:00
|
|
|
#define LUA_UTF8LIBNAME "utf8"
|
|
|
|
LUAMOD_API int (luaopen_utf8) (lua_State *L);
|
|
|
|
|
2002-06-05 10:24:04 -07:00
|
|
|
#define LUA_MATHLIBNAME "math"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_math) (lua_State *L);
|
2002-06-05 10:24:04 -07:00
|
|
|
|
|
|
|
#define LUA_DBLIBNAME "debug"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_debug) (lua_State *L);
|
1997-09-16 12:25:59 -07:00
|
|
|
|
2005-04-13 10:24:20 -07:00
|
|
|
#define LUA_LOADLIBNAME "package"
|
2009-11-24 04:05:44 -08:00
|
|
|
LUAMOD_API int (luaopen_package) (lua_State *L);
|
2003-03-17 05:04:58 -08:00
|
|
|
|
|
|
|
|
2004-07-09 07:29:29 -07:00
|
|
|
/* open all previous libraries */
|
2006-09-11 07:07:24 -07:00
|
|
|
LUALIB_API void (luaL_openlibs) (lua_State *L);
|
2004-07-09 07:29:29 -07:00
|
|
|
|
2002-06-18 10:42:52 -07:00
|
|
|
|
1993-07-28 06:18:00 -07:00
|
|
|
#endif
|