2 ** $Id: lualib.h,v 1.44 2014/02/06 17:32:33 roberto Exp $
3 ** Lua standard libraries
4 ** See Copyright Notice in lua.h
15 LUAMOD_API int (luaopen_base) (lua_State *L);
17 #define LUA_COLIBNAME "coroutine"
18 LUAMOD_API int (luaopen_coroutine) (lua_State *L);
20 #define LUA_TABLIBNAME "table"
21 LUAMOD_API int (luaopen_table) (lua_State *L);
23 #define LUA_IOLIBNAME "io"
24 LUAMOD_API int (luaopen_io) (lua_State *L);
26 #define LUA_OSLIBNAME "os"
27 LUAMOD_API int (luaopen_os) (lua_State *L);
29 #define LUA_STRLIBNAME "string"
30 LUAMOD_API int (luaopen_string) (lua_State *L);
32 #define LUA_UTF8LIBNAME "utf8"
33 LUAMOD_API int (luaopen_utf8) (lua_State *L);
35 #define LUA_BITLIBNAME "bit32"
36 LUAMOD_API int (luaopen_bit32) (lua_State *L);
38 #define LUA_MATHLIBNAME "math"
39 LUAMOD_API int (luaopen_math) (lua_State *L);
41 #define LUA_DBLIBNAME "debug"
42 LUAMOD_API int (luaopen_debug) (lua_State *L);
44 #define LUA_LOADLIBNAME "package"
45 LUAMOD_API int (luaopen_package) (lua_State *L);
48 /* open all previous libraries */
49 LUALIB_API void (luaL_openlibs) (lua_State *L);
53 #if !defined(lua_assert)
54 #define lua_assert(x) ((void)0)