Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "lua.h"
Go to the source code of this file.
Macros | |
#define | LUA_FILEHANDLE "FILE*" |
#define | LUA_COLIBNAME "coroutine" |
#define | LUA_TABLIBNAME "table" |
#define | LUA_IOLIBNAME "io" |
#define | LUA_OSLIBNAME "os" |
#define | LUA_STRLIBNAME "string" |
#define | LUA_MATHLIBNAME "math" |
#define | LUA_DBLIBNAME "debug" |
#define | LUA_LOADLIBNAME "package" |
#define | lua_assert(x) ((void)0) |
Functions | |
LUALIB_API int | luaopen_base (lua_State *L) |
LUALIB_API int | luaopen_table (lua_State *L) |
LUALIB_API int | luaopen_io (lua_State *L) |
LUALIB_API int | luaopen_os (lua_State *L) |
LUALIB_API int | luaopen_string (lua_State *L) |
LUALIB_API int | luaopen_math (lua_State *L) |
LUALIB_API int | luaopen_debug (lua_State *L) |
LUALIB_API int | luaopen_package (lua_State *L) |
LUALIB_API void | luaL_openlibs (lua_State *L) |
#define lua_assert | ( | x | ) | ((void)0) |
Definition at line 49 of file lua-5.1.5/src/lualib.h.
#define LUA_COLIBNAME "coroutine" |
Definition at line 18 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_base().
#define LUA_DBLIBNAME "debug" |
Definition at line 36 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_debug().
#define LUA_FILEHANDLE "FILE*" |
Definition at line 15 of file lua-5.1.5/src/lualib.h.
Referenced by createmeta(), createmeta(), createmeta(), createmeta(), io_type(), io_type(), io_type(), io_type(), newfile(), newprefile(), newprefile(), and newprefile().
#define LUA_IOLIBNAME "io" |
Definition at line 24 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_io().
#define LUA_LOADLIBNAME "package" |
Definition at line 39 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_package().
#define LUA_MATHLIBNAME "math" |
Definition at line 33 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_math().
#define LUA_OSLIBNAME "os" |
Definition at line 27 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_os().
#define LUA_STRLIBNAME "string" |
Definition at line 30 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_string().
#define LUA_TABLIBNAME "table" |
Definition at line 21 of file lua-5.1.5/src/lualib.h.
Referenced by luaopen_table().
LUALIB_API void luaL_openlibs | ( | lua_State * | L | ) |
Definition at line 30 of file lua-5.1.5/src/linit.c.
LUALIB_API int luaopen_base | ( | lua_State * | L | ) |
Definition at line 648 of file lua-5.1.5/src/lbaselib.c.
LUALIB_API int luaopen_debug | ( | lua_State * | L | ) |
Definition at line 394 of file lua-5.1.5/src/ldblib.c.
LUALIB_API int luaopen_io | ( | lua_State * | L | ) |
Definition at line 537 of file lua-5.1.5/src/liolib.c.
LUALIB_API int luaopen_math | ( | lua_State * | L | ) |
Definition at line 251 of file lua-5.1.5/src/lmathlib.c.
LUALIB_API int luaopen_os | ( | lua_State * | L | ) |
Definition at line 239 of file lua-5.1.5/src/loslib.c.
LUALIB_API int luaopen_package | ( | lua_State * | L | ) |
Definition at line 627 of file lua-5.1.5/src/loadlib.c.
LUALIB_API int luaopen_string | ( | lua_State * | L | ) |
Definition at line 862 of file lua-5.1.5/src/lstrlib.c.
LUALIB_API int luaopen_table | ( | lua_State * | L | ) |
Definition at line 283 of file lua-5.1.5/src/ltablib.c.