Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
lua-5.2.4/src/lualib.h
Go to the documentation of this file.
1/*
2** $Id: lualib.h,v 1.43.1.1 2013/04/12 18:48:47 roberto Exp $
3** Lua standard libraries
4** See Copyright Notice in lua.h
5*/
6
7
8#ifndef lualib_h
9#define lualib_h
10
11#include "lua.h"
12
13
14
16
17#define LUA_COLIBNAME "coroutine"
19
20#define LUA_TABLIBNAME "table"
22
23#define LUA_IOLIBNAME "io"
25
26#define LUA_OSLIBNAME "os"
28
29#define LUA_STRLIBNAME "string"
31
32#define LUA_BITLIBNAME "bit32"
34
35#define LUA_MATHLIBNAME "math"
37
38#define LUA_DBLIBNAME "debug"
40
41#define LUA_LOADLIBNAME "package"
43
44
45/* open all previous libraries */
47
48
49
50#if !defined(lua_assert)
51#define lua_assert(x) ((void)0)
52#endif
53
54
55#endif
#define LUALIB_API
#define LUAMOD_API
LUAMOD_API int luaopen_os(lua_State *L)
LUAMOD_API int luaopen_bit32(lua_State *L)
LUAMOD_API int luaopen_io(lua_State *L)
LUAMOD_API int luaopen_math(lua_State *L)
LUAMOD_API int luaopen_coroutine(lua_State *L)
LUALIB_API void luaL_openlibs(lua_State *L)
LUAMOD_API int luaopen_string(lua_State *L)
LUAMOD_API int luaopen_package(lua_State *L)
LUAMOD_API int luaopen_table(lua_State *L)
LUAMOD_API int luaopen_debug(lua_State *L)
LUAMOD_API int luaopen_base(lua_State *L)