Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
Go to the source code of this file.
Macros | |
#define | lbaselib_c |
#define | LUA_LIB |
#define | SPACECHARS " \f\n\r\t\v" |
#define | RESERVEDSLOT 5 |
Functions | |
static int | luaB_print (lua_State *L) |
static int | luaB_tonumber (lua_State *L) |
static int | luaB_error (lua_State *L) |
static int | luaB_getmetatable (lua_State *L) |
static int | luaB_setmetatable (lua_State *L) |
static int | luaB_rawequal (lua_State *L) |
static int | luaB_rawlen (lua_State *L) |
static int | luaB_rawget (lua_State *L) |
static int | luaB_rawset (lua_State *L) |
static int | luaB_collectgarbage (lua_State *L) |
static int | luaB_type (lua_State *L) |
static int | pairsmeta (lua_State *L, const char *method, int iszero, lua_CFunction iter) |
static int | luaB_next (lua_State *L) |
static int | luaB_pairs (lua_State *L) |
static int | ipairsaux (lua_State *L) |
static int | luaB_ipairs (lua_State *L) |
static int | load_aux (lua_State *L, int status, int envidx) |
static int | luaB_loadfile (lua_State *L) |
static const char * | generic_reader (lua_State *L, void *ud, size_t *size) |
static int | luaB_load (lua_State *L) |
static int | dofilecont (lua_State *L) |
static int | luaB_dofile (lua_State *L) |
static int | luaB_assert (lua_State *L) |
static int | luaB_select (lua_State *L) |
static int | finishpcall (lua_State *L, int status) |
static int | pcallcont (lua_State *L) |
static int | luaB_pcall (lua_State *L) |
static int | luaB_xpcall (lua_State *L) |
static int | luaB_tostring (lua_State *L) |
LUAMOD_API int | luaopen_base (lua_State *L) |
Variables | |
static const luaL_Reg | base_funcs [] |
#define lbaselib_c |
Definition at line 14 of file lua-5.2.4/src/lbaselib.c.
#define LUA_LIB |
Definition at line 15 of file lua-5.2.4/src/lbaselib.c.
#define RESERVEDSLOT 5 |
Definition at line 283 of file lua-5.2.4/src/lbaselib.c.
Referenced by generic_reader(), and luaB_load().
#define SPACECHARS " \f\n\r\t\v" |
Definition at line 46 of file lua-5.2.4/src/lbaselib.c.
Referenced by luaB_tonumber().
|
static |
Definition at line 331 of file lua-5.2.4/src/lbaselib.c.
References lua_gettop().
Referenced by luaB_dofile().
|
static |
Definition at line 369 of file lua-5.2.4/src/lbaselib.c.
References lua_checkstack(), lua_gettop(), lua_pushboolean(), lua_pushstring(), lua_replace, and lua_settop().
Referenced by luaB_pcall(), luaB_xpcall(), and pcallcont().
|
static |
Definition at line 292 of file lua-5.2.4/src/lbaselib.c.
References lua_call, lua_isnil, lua_isstring(), lua_pop, lua_pushvalue(), lua_replace, lua_tolstring(), luaL_checkstack(), luaL_error(), NULL, and RESERVEDSLOT.
Referenced by luaB_load().
|
static |
Definition at line 230 of file lua-5.2.4/src/lbaselib.c.
References lua_isnil, lua_pushinteger(), lua_rawgeti(), LUA_TTABLE, luaL_checkint, and luaL_checktype().
Referenced by luaB_ipairs().
|
static |
Definition at line 245 of file lua-5.2.4/src/lbaselib.c.
References lua_insert, LUA_OK, lua_pop, lua_pushnil(), lua_pushvalue(), and lua_setupvalue().
Referenced by luaB_load(), and luaB_loadfile().
|
static |
Definition at line 346 of file lua-5.2.4/src/lbaselib.c.
References lua_gettop(), lua_toboolean(), luaL_error(), and luaL_optstring.
|
static |
Definition at line 160 of file lua-5.2.4/src/lbaselib.c.
References lua_gc(), LUA_GCCOLLECT, LUA_GCCOUNT, LUA_GCCOUNTB, LUA_GCGEN, LUA_GCINC, LUA_GCISRUNNING, LUA_GCRESTART, LUA_GCSETMAJORINC, LUA_GCSETPAUSE, LUA_GCSETSTEPMUL, LUA_GCSTEP, LUA_GCSTOP, lua_pushboolean(), lua_pushinteger(), lua_pushnumber(), luaL_checkoption(), luaL_optint, and NULL.
|
static |
Definition at line 336 of file lua-5.2.4/src/lbaselib.c.
References dofilecont(), lua_callk(), lua_error(), LUA_MULTRET, LUA_OK, lua_settop(), luaL_loadfile, luaL_optstring, and NULL.
|
static |
Definition at line 89 of file lua-5.2.4/src/lbaselib.c.
References lua_concat(), lua_error(), lua_isstring(), lua_pushvalue(), lua_settop(), luaL_optint, and luaL_where().
|
static |
Definition at line 101 of file lua-5.2.4/src/lbaselib.c.
References lua_getmetatable(), lua_pushnil(), luaL_checkany(), and luaL_getmetafield().
|
static |
Definition at line 240 of file lua-5.2.4/src/lbaselib.c.
References ipairsaux(), and pairsmeta().
|
static |
Definition at line 309 of file lua-5.2.4/src/lbaselib.c.
References generic_reader(), load_aux(), lua_isnone, lua_load(), lua_settop(), LUA_TFUNCTION, lua_tolstring(), luaL_checktype(), luaL_loadbufferx(), luaL_optstring, NULL, RESERVEDSLOT, and s.
|
static |
Definition at line 262 of file lua-5.2.4/src/lbaselib.c.
References load_aux(), lua_isnone, luaL_loadfilex(), luaL_optstring, and NULL.
|
static |
Definition at line 213 of file lua-5.2.4/src/lbaselib.c.
References lua_next(), lua_pushnil(), lua_settop(), LUA_TTABLE, and luaL_checktype().
Referenced by luaB_pairs().
|
static |
Definition at line 225 of file lua-5.2.4/src/lbaselib.c.
References luaB_next(), and pairsmeta().
|
static |
Definition at line 388 of file lua-5.2.4/src/lbaselib.c.
References finishpcall(), lua_gettop(), lua_insert, LUA_MULTRET, LUA_OK, lua_pcallk(), lua_pushnil(), luaL_checkany(), and pcallcont().
|
static |
Definition at line 23 of file lua-5.2.4/src/lbaselib.c.
References lua_call, lua_getglobal, lua_gettop(), lua_pop, lua_pushvalue(), LUA_QL, lua_tolstring(), luaL_error(), NULL, and s.
|
static |
Definition at line 125 of file lua-5.2.4/src/lbaselib.c.
References lua_pushboolean(), lua_rawequal(), and luaL_checkany().
|
static |
Definition at line 142 of file lua-5.2.4/src/lbaselib.c.
References lua_rawget(), lua_settop(), LUA_TTABLE, luaL_checkany(), and luaL_checktype().
|
static |
Definition at line 133 of file lua-5.2.4/src/lbaselib.c.
References lua_pushinteger(), lua_rawlen, LUA_TSTRING, LUA_TTABLE, lua_type(), and luaL_argcheck.
|
static |
Definition at line 150 of file lua-5.2.4/src/lbaselib.c.
References lua_rawset(), lua_settop(), LUA_TTABLE, luaL_checkany(), and luaL_checktype().
|
static |
Definition at line 353 of file lua-5.2.4/src/lbaselib.c.
References lua_gettop(), lua_pushinteger(), lua_tostring, LUA_TSTRING, lua_type(), luaL_argcheck, and luaL_checkint.
|
static |
Definition at line 112 of file lua-5.2.4/src/lbaselib.c.
References lua_setmetatable(), lua_settop(), LUA_TNIL, LUA_TTABLE, lua_type(), luaL_argcheck, luaL_checktype(), luaL_error(), and luaL_getmetafield().
|
static |
Definition at line 48 of file lua-5.2.4/src/lbaselib.c.
References digit(), lua_isnoneornil, lua_pushnil(), lua_pushnumber(), lua_tonumberx(), luaL_argcheck, luaL_checkany(), luaL_checkint, luaL_checklstring(), s, and SPACECHARS.
|
static |
Definition at line 410 of file lua-5.2.4/src/lbaselib.c.
References luaL_checkany(), luaL_tolstring(), and NULL.
|
static |
Definition at line 189 of file lua-5.2.4/src/lbaselib.c.
References lua_pushstring(), luaL_checkany(), and luaL_typename.
|
static |
Definition at line 398 of file lua-5.2.4/src/lbaselib.c.
References finishpcall(), lua_copy(), lua_gettop(), LUA_MULTRET, LUA_OK, lua_pcallk(), lua_pushvalue(), lua_replace, luaL_argcheck, and pcallcont().
LUAMOD_API int luaopen_base | ( | lua_State * | L | ) |
Definition at line 447 of file lua-5.2.4/src/lbaselib.c.
References base_funcs, lua_pushglobaltable, lua_pushliteral, lua_setfield(), LUA_VERSION, and luaL_setfuncs().
|
static |
Definition at line 196 of file lua-5.2.4/src/lbaselib.c.
References lua_call, lua_pushcfunction, lua_pushinteger(), lua_pushnil(), lua_pushvalue(), LUA_TTABLE, luaL_checktype(), and luaL_getmetafield().
Referenced by luaB_ipairs(), and luaB_pairs().
|
static |
Definition at line 382 of file lua-5.2.4/src/lbaselib.c.
References finishpcall(), lua_getctx(), LUA_YIELD, and NULL.
Referenced by luaB_pcall(), and luaB_xpcall().
|
static |
Definition at line 417 of file lua-5.2.4/src/lbaselib.c.
Referenced by luaopen_base().