1993-07-28 10:18:00 -03:00
|
|
|
/*
|
2014-02-06 15:32:33 -02:00
|
|
|
** $Id: lualib.h,v 1.43 2011/12/08 12:11:37 roberto Exp roberto $
|
1997-09-16 16:25:59 -03:00
|
|
|
** Lua standard libraries
|
|
|
|
** See Copyright Notice in lua.h
|
1993-07-28 10:18:00 -03:00
|
|
|
*/
|
|
|
|
|
1997-09-16 16:25:59 -03:00
|
|
|
|
1993-07-28 10:18:00 -03:00
|
|
|
#ifndef lualib_h
|
|
|
|
#define lualib_h
|
|
|
|
|
1996-04-30 18:13:55 -03:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-09-12 10:46:59 -03:00
|
|
|
|
2004-05-28 15:35:05 -03:00
|
|
|
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_base) (lua_State *L);
|
2002-06-05 14:24:04 -03:00
|
|
|
|
2010-06-10 18:30:26 -03:00
|
|
|
#define LUA_COLIBNAME "coroutine"
|
|
|
|
LUAMOD_API int (luaopen_coroutine) (lua_State *L);
|
|
|
|
|
2002-06-05 14:24:04 -03:00
|
|
|
#define LUA_TABLIBNAME "table"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_table) (lua_State *L);
|
2002-06-05 14:24:04 -03:00
|
|
|
|
|
|
|
#define LUA_IOLIBNAME "io"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_io) (lua_State *L);
|
2002-06-05 14:24:04 -03:00
|
|
|
|
2004-07-09 12:47:48 -03:00
|
|
|
#define LUA_OSLIBNAME "os"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_os) (lua_State *L);
|
2004-07-09 12:47:48 -03:00
|
|
|
|
2002-06-05 14:24:04 -03:00
|
|
|
#define LUA_STRLIBNAME "string"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_string) (lua_State *L);
|
2002-06-05 14:24:04 -03:00
|
|
|
|
2014-02-06 15:32:33 -02:00
|
|
|
#define LUA_UTF8LIBNAME "utf8"
|
|
|
|
LUAMOD_API int (luaopen_utf8) (lua_State *L);
|
|
|
|
|
2010-10-25 12:32:36 -02:00
|
|
|
#define LUA_BITLIBNAME "bit32"
|
|
|
|
LUAMOD_API int (luaopen_bit32) (lua_State *L);
|
2009-07-01 13:16:40 -03:00
|
|
|
|
2002-06-05 14:24:04 -03:00
|
|
|
#define LUA_MATHLIBNAME "math"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_math) (lua_State *L);
|
2002-06-05 14:24:04 -03:00
|
|
|
|
|
|
|
#define LUA_DBLIBNAME "debug"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_debug) (lua_State *L);
|
1997-09-16 16:25:59 -03:00
|
|
|
|
2005-04-13 14:24:20 -03:00
|
|
|
#define LUA_LOADLIBNAME "package"
|
2009-11-24 10:05:44 -02:00
|
|
|
LUAMOD_API int (luaopen_package) (lua_State *L);
|
2003-03-17 10:04:58 -03:00
|
|
|
|
|
|
|
|
2004-07-09 11:29:29 -03:00
|
|
|
/* open all previous libraries */
|
2006-09-11 11:07:24 -03:00
|
|
|
LUALIB_API void (luaL_openlibs) (lua_State *L);
|
2004-07-09 11:29:29 -03:00
|
|
|
|
2002-06-18 14:42:52 -03:00
|
|
|
|
2005-12-27 15:12:00 -02:00
|
|
|
|
2011-05-25 11:12:28 -03:00
|
|
|
#if !defined(lua_assert)
|
2005-12-27 15:12:00 -02:00
|
|
|
#define lua_assert(x) ((void)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1993-07-28 10:18:00 -03:00
|
|
|
#endif
|