1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00
lua/lualib.h

46 lines
876 B
C
Raw Normal View History

1993-07-28 10:18:00 -03:00
/*
2004-07-09 11:29:29 -03:00
** $Id: lualib.h,v 1.30 2004/05/28 18:35:05 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
#include "lua.h"
/* Key to file-handle type */
#define LUA_FILEHANDLE "FILE*"
2002-06-05 14:24:04 -03:00
#define LUA_COLIBNAME "coroutine"
LUALIB_API int luaopen_base (lua_State *L);
2002-06-05 14:24:04 -03:00
#define LUA_TABLIBNAME "table"
LUALIB_API int luaopen_table (lua_State *L);
2002-06-05 14:24:04 -03:00
#define LUA_IOLIBNAME "io"
#define LUA_OSLIBNAME "os"
LUALIB_API int luaopen_io (lua_State *L);
2002-06-05 14:24:04 -03:00
#define LUA_STRLIBNAME "string"
LUALIB_API int luaopen_string (lua_State *L);
2002-06-05 14:24:04 -03:00
#define LUA_MATHLIBNAME "math"
LUALIB_API int luaopen_math (lua_State *L);
2002-06-05 14:24:04 -03:00
#define LUA_DBLIBNAME "debug"
LUALIB_API int luaopen_debug (lua_State *L);
1997-09-16 16:25:59 -03:00
2003-03-17 10:04:58 -03:00
LUALIB_API int luaopen_loadlib (lua_State *L);
2004-07-09 11:29:29 -03:00
/* open all previous libraries */
LUALIB_API int luaopen_stdlibs (lua_State *L);
1993-07-28 10:18:00 -03:00
#endif