Github User Fetcher 1.0.0
C Application with Server and GUI
|
#include "lprefix.h"
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lua.h"
#include "lauxlib.h"
Go to the source code of this file.
Data Structures | |
struct | UBox |
struct | LoadF |
struct | LoadS |
Macros | |
#define | lauxlib_c |
#define | LUA_LIB |
#define | LEVELS1 10 /* size of the first part of the stack */ |
#define | LEVELS2 11 /* size of the second part of the stack */ |
#define | l_inspectstat(stat, what) /* no op */ |
#define | buffonstack(B) ((B)->b != (B)->initb) |
#define | freelist 0 |
Typedefs | |
typedef struct UBox | UBox |
typedef struct LoadF | LoadF |
typedef struct LoadS | LoadS |
Functions | |
static int | findfield (lua_State *L, int objidx, int level) |
static int | pushglobalfuncname (lua_State *L, lua_Debug *ar) |
static void | pushfuncname (lua_State *L, lua_Debug *ar) |
static int | lastlevel (lua_State *L) |
LUALIB_API void | luaL_traceback (lua_State *L, lua_State *L1, const char *msg, int level) |
LUALIB_API int | luaL_argerror (lua_State *L, int arg, const char *extramsg) |
static int | typeerror (lua_State *L, int arg, const char *tname) |
static void | tag_error (lua_State *L, int arg, int tag) |
LUALIB_API void | luaL_where (lua_State *L, int level) |
LUALIB_API int | luaL_error (lua_State *L, const char *fmt,...) |
LUALIB_API int | luaL_fileresult (lua_State *L, int stat, const char *fname) |
LUALIB_API int | luaL_execresult (lua_State *L, int stat) |
LUALIB_API int | luaL_newmetatable (lua_State *L, const char *tname) |
LUALIB_API void | luaL_setmetatable (lua_State *L, const char *tname) |
LUALIB_API void * | luaL_testudata (lua_State *L, int ud, const char *tname) |
LUALIB_API void * | luaL_checkudata (lua_State *L, int ud, const char *tname) |
LUALIB_API int | luaL_checkoption (lua_State *L, int arg, const char *def, const char *const lst[]) |
LUALIB_API void | luaL_checkstack (lua_State *L, int space, const char *msg) |
LUALIB_API void | luaL_checktype (lua_State *L, int arg, int t) |
LUALIB_API void | luaL_checkany (lua_State *L, int arg) |
LUALIB_API const char * | luaL_checklstring (lua_State *L, int arg, size_t *len) |
LUALIB_API const char * | luaL_optlstring (lua_State *L, int arg, const char *def, size_t *len) |
LUALIB_API lua_Number | luaL_checknumber (lua_State *L, int arg) |
LUALIB_API lua_Number | luaL_optnumber (lua_State *L, int arg, lua_Number def) |
static void | interror (lua_State *L, int arg) |
LUALIB_API lua_Integer | luaL_checkinteger (lua_State *L, int arg) |
LUALIB_API lua_Integer | luaL_optinteger (lua_State *L, int arg, lua_Integer def) |
static void * | resizebox (lua_State *L, int idx, size_t newsize) |
static int | boxgc (lua_State *L) |
static void * | newbox (lua_State *L, size_t newsize) |
LUALIB_API char * | luaL_prepbuffsize (luaL_Buffer *B, size_t sz) |
LUALIB_API void | luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) |
LUALIB_API void | luaL_addstring (luaL_Buffer *B, const char *s) |
LUALIB_API void | luaL_pushresult (luaL_Buffer *B) |
LUALIB_API void | luaL_pushresultsize (luaL_Buffer *B, size_t sz) |
LUALIB_API void | luaL_addvalue (luaL_Buffer *B) |
LUALIB_API void | luaL_buffinit (lua_State *L, luaL_Buffer *B) |
LUALIB_API char * | luaL_buffinitsize (lua_State *L, luaL_Buffer *B, size_t sz) |
LUALIB_API int | luaL_ref (lua_State *L, int t) |
LUALIB_API void | luaL_unref (lua_State *L, int t, int ref) |
static const char * | getF (lua_State *L, void *ud, size_t *size) |
static int | errfile (lua_State *L, const char *what, int fnameindex) |
static int | skipBOM (LoadF *lf) |
static int | skipcomment (LoadF *lf, int *cp) |
LUALIB_API int | luaL_loadfilex (lua_State *L, const char *filename, const char *mode) |
static const char * | getS (lua_State *L, void *ud, size_t *size) |
LUALIB_API int | luaL_loadbufferx (lua_State *L, const char *buff, size_t size, const char *name, const char *mode) |
LUALIB_API int | luaL_loadstring (lua_State *L, const char *s) |
LUALIB_API int | luaL_getmetafield (lua_State *L, int obj, const char *event) |
LUALIB_API int | luaL_callmeta (lua_State *L, int obj, const char *event) |
LUALIB_API lua_Integer | luaL_len (lua_State *L, int idx) |
LUALIB_API const char * | luaL_tolstring (lua_State *L, int idx, size_t *len) |
LUALIB_API void | luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup) |
LUALIB_API int | luaL_getsubtable (lua_State *L, int idx, const char *fname) |
LUALIB_API void | luaL_requiref (lua_State *L, const char *modname, lua_CFunction openf, int glb) |
LUALIB_API const char * | luaL_gsub (lua_State *L, const char *s, const char *p, const char *r) |
static void * | l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) |
static int | panic (lua_State *L) |
LUALIB_API lua_State * | luaL_newstate (void) |
LUALIB_API void | luaL_checkversion_ (lua_State *L, lua_Number ver, size_t sz) |
#define buffonstack | ( | B | ) | ((B)->b != (B)->initb) |
Definition at line 499 of file lua-5.3.6/src/lauxlib.c.
Referenced by luaL_addvalue(), luaL_prepbuffsize(), and luaL_pushresult().
#define freelist 0 |
Definition at line 592 of file lua-5.3.6/src/lauxlib.c.
Referenced by luaL_ref(), and luaL_unref().
#define l_inspectstat | ( | stat, | |
what ) /* no op */ |
Definition at line 267 of file lua-5.3.6/src/lauxlib.c.
Referenced by luaL_execresult().
#define lauxlib_c |
Definition at line 7 of file lua-5.3.6/src/lauxlib.c.
#define LEVELS1 10 /* size of the first part of the stack */ |
Definition at line 37 of file lua-5.3.6/src/lauxlib.c.
Referenced by luaL_traceback().
#define LEVELS2 11 /* size of the second part of the stack */ |
Definition at line 38 of file lua-5.3.6/src/lauxlib.c.
Referenced by luaL_traceback().
#define LUA_LIB |
Definition at line 8 of file lua-5.3.6/src/lauxlib.c.
typedef struct LoadF LoadF |
typedef struct LoadS LoadS |
typedef struct UBox UBox |
|
static |
Definition at line 476 of file lua-5.3.6/src/lauxlib.c.
References resizebox().
Referenced by newbox().
|
static |
Definition at line 660 of file lua-5.3.6/src/lauxlib.c.
References LUA_ERRFILE, lua_pushfstring(), lua_remove, and lua_tostring.
Referenced by luaL_loadfilex().
|
static |
Definition at line 46 of file lua-5.3.6/src/lauxlib.c.
References findfield(), lua_concat(), lua_insert, lua_istable, lua_next(), lua_pop, lua_pushliteral, lua_pushnil(), lua_rawequal(), lua_remove, LUA_TSTRING, and lua_type().
Referenced by findfield(), and pushglobalfuncname().
|
static |
Definition at line 642 of file lua-5.3.6/src/lauxlib.c.
References LoadF::buff, LoadF::f, fread(), LoadF::n, and NULL.
Referenced by luaL_loadfilex().
|
static |
Definition at line 745 of file lua-5.3.6/src/lauxlib.c.
References NULL, LoadS::s, and LoadS::size.
Referenced by luaL_loadbufferx().
|
static |
Definition at line 422 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_isnumber(), LUA_TNUMBER, luaL_argerror(), and tag_error().
Referenced by luaL_checkinteger().
|
static |
Definition at line 1008 of file lua-5.3.6/src/lauxlib.c.
References free, NULL, and realloc.
Referenced by luaL_newstate().
|
static |
Definition at line 110 of file lua-5.3.6/src/lauxlib.c.
References lua_getstack().
Referenced by luaL_traceback().
LUALIB_API void luaL_addlstring | ( | luaL_Buffer * | B, |
const char * | s, | ||
size_t | l ) |
Definition at line 528 of file lua-5.3.6/src/lauxlib.c.
References luaL_addsize, luaL_prepbuffsize(), and s.
Referenced by luaL_addstring(), luaL_addvalue(), and luaL_gsub().
LUALIB_API void luaL_addstring | ( | luaL_Buffer * | B, |
const char * | s ) |
Definition at line 537 of file lua-5.3.6/src/lauxlib.c.
References luaL_addlstring(), and s.
Referenced by luaL_gsub().
LUALIB_API void luaL_addvalue | ( | luaL_Buffer * | B | ) |
Definition at line 558 of file lua-5.3.6/src/lauxlib.c.
References buffonstack, luaL_Buffer::L, lua_insert, lua_remove, lua_tolstring(), luaL_addlstring(), and s.
LUALIB_API int luaL_argerror | ( | lua_State * | L, |
int | arg, | ||
const char * | extramsg ) |
Definition at line 164 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_getinfo(), lua_getstack(), lua_tostring, luaL_error(), lua_Debug::name, lua_Debug::namewhat, NULL, and pushglobalfuncname().
Referenced by interror(), luaL_checkany(), luaL_checkoption(), and typeerror().
LUALIB_API void luaL_buffinit | ( | lua_State * | L, |
luaL_Buffer * | B ) |
Definition at line 569 of file lua-5.3.6/src/lauxlib.c.
References luaL_Buffer::b, luaL_Buffer::initb, luaL_Buffer::L, LUAL_BUFFERSIZE, luaL_Buffer::n, and luaL_Buffer::size.
Referenced by luaL_buffinitsize(), and luaL_gsub().
LUALIB_API char * luaL_buffinitsize | ( | lua_State * | L, |
luaL_Buffer * | B, | ||
size_t | sz ) |
Definition at line 577 of file lua-5.3.6/src/lauxlib.c.
References luaL_buffinit(), and luaL_prepbuffsize().
LUALIB_API int luaL_callmeta | ( | lua_State * | L, |
int | obj, | ||
const char * | event ) |
Definition at line 788 of file lua-5.3.6/src/lauxlib.c.
References lua_absindex(), lua_call, lua_pushvalue(), LUA_TNIL, and luaL_getmetafield().
Referenced by luaL_tolstring().
LUALIB_API void luaL_checkany | ( | lua_State * | L, |
int | arg ) |
Definition at line 384 of file lua-5.3.6/src/lauxlib.c.
References arg, LUA_TNONE, lua_type(), and luaL_argerror().
LUALIB_API lua_Integer luaL_checkinteger | ( | lua_State * | L, |
int | arg ) |
Definition at line 430 of file lua-5.3.6/src/lauxlib.c.
References arg, interror(), and lua_tointegerx().
Referenced by luaL_optinteger().
LUALIB_API const char * luaL_checklstring | ( | lua_State * | L, |
int | arg, | ||
size_t * | len ) |
Definition at line 390 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_tolstring(), LUA_TSTRING, s, and tag_error().
Referenced by luaL_optlstring().
LUALIB_API lua_Number luaL_checknumber | ( | lua_State * | L, |
int | arg ) |
Definition at line 408 of file lua-5.3.6/src/lauxlib.c.
References arg, LUA_TNUMBER, lua_tonumberx(), and tag_error().
Referenced by luaL_optnumber().
LUALIB_API int luaL_checkoption | ( | lua_State * | L, |
int | arg, | ||
const char * | def, | ||
const char *const | lst[] ) |
Definition at line 348 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_pushfstring(), luaL_argerror(), luaL_checkstring, luaL_optstring, and name.
LUALIB_API void luaL_checkstack | ( | lua_State * | L, |
int | space, | ||
const char * | msg ) |
Definition at line 368 of file lua-5.3.6/src/lauxlib.c.
References lua_checkstack(), and luaL_error().
Referenced by luaL_setfuncs(), and luaL_traceback().
LUALIB_API void luaL_checktype | ( | lua_State * | L, |
int | arg, | ||
int | t ) |
Definition at line 378 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_type(), and tag_error().
LUALIB_API void * luaL_checkudata | ( | lua_State * | L, |
int | ud, | ||
const char * | tname ) |
Definition at line 333 of file lua-5.3.6/src/lauxlib.c.
References luaL_testudata(), NULL, and typeerror().
LUALIB_API void luaL_checkversion_ | ( | lua_State * | L, |
lua_Number | ver, | ||
size_t | sz ) |
Definition at line 1038 of file lua-5.3.6/src/lauxlib.c.
References lua_version(), LUAI_UACNUMBER, luaL_error(), LUAL_NUMSIZES, and NULL.
LUALIB_API int luaL_error | ( | lua_State * | L, |
const char * | fmt, | ||
... ) |
Definition at line 223 of file lua-5.3.6/src/lauxlib.c.
References lua_concat(), lua_error(), lua_pushvfstring(), and luaL_where().
Referenced by luaL_argerror(), luaL_checkstack(), luaL_checkversion_(), luaL_len(), luaL_prepbuffsize(), luaL_tolstring(), and resizebox().
LUALIB_API int luaL_execresult | ( | lua_State * | L, |
int | stat ) |
Definition at line 274 of file lua-5.3.6/src/lauxlib.c.
References l_inspectstat, lua_pushboolean(), lua_pushinteger(), lua_pushnil(), lua_pushstring(), luaL_fileresult(), and NULL.
LUALIB_API int luaL_fileresult | ( | lua_State * | L, |
int | stat, | ||
const char * | fname ) |
Definition at line 234 of file lua-5.3.6/src/lauxlib.c.
References lua_pushboolean(), lua_pushfstring(), lua_pushinteger(), lua_pushnil(), and lua_pushstring().
Referenced by luaL_execresult().
LUALIB_API int luaL_getmetafield | ( | lua_State * | L, |
int | obj, | ||
const char * | event ) |
Definition at line 772 of file lua-5.3.6/src/lauxlib.c.
References lua_getmetatable(), lua_pop, lua_pushstring(), lua_rawget(), lua_remove, and LUA_TNIL.
Referenced by luaL_callmeta(), luaL_tolstring(), and typeerror().
LUALIB_API int luaL_getsubtable | ( | lua_State * | L, |
int | idx, | ||
const char * | fname ) |
Definition at line 951 of file lua-5.3.6/src/lauxlib.c.
References lua_absindex(), lua_getfield(), lua_newtable, lua_pop, lua_pushvalue(), lua_setfield(), and LUA_TTABLE.
Referenced by luaL_requiref().
LUALIB_API const char * luaL_gsub | ( | lua_State * | L, |
const char * | s, | ||
const char * | p, | ||
const char * | r ) |
Definition at line 991 of file lua-5.3.6/src/lauxlib.c.
References lua_tostring, luaL_addlstring(), luaL_addstring(), luaL_buffinit(), luaL_pushresult(), NULL, and s.
LUALIB_API lua_Integer luaL_len | ( | lua_State * | L, |
int | idx ) |
Definition at line 798 of file lua-5.3.6/src/lauxlib.c.
References lua_len(), lua_pop, lua_tointegerx(), and luaL_error().
LUALIB_API int luaL_loadbufferx | ( | lua_State * | L, |
const char * | buff, | ||
size_t | size, | ||
const char * | name, | ||
const char * | mode ) |
Definition at line 755 of file lua-5.3.6/src/lauxlib.c.
References getS(), lua_load(), name, LoadS::s, and LoadS::size.
LUALIB_API int luaL_loadfilex | ( | lua_State * | L, |
const char * | filename, | ||
const char * | mode ) |
Definition at line 703 of file lua-5.3.6/src/lauxlib.c.
References LoadF::buff, errfile(), LoadF::f, getF(), lua_gettop(), lua_load(), lua_pushfstring(), lua_pushliteral, lua_remove, lua_settop(), LUA_SIGNATURE, lua_tostring, LoadF::n, NULL, and skipcomment().
LUALIB_API int luaL_loadstring | ( | lua_State * | L, |
const char * | s ) |
Definition at line 764 of file lua-5.3.6/src/lauxlib.c.
References luaL_loadbuffer, and s.
LUALIB_API int luaL_newmetatable | ( | lua_State * | L, |
const char * | tname ) |
Definition at line 299 of file lua-5.3.6/src/lauxlib.c.
References lua_createtable(), lua_pop, lua_pushstring(), lua_pushvalue(), LUA_REGISTRYINDEX, lua_setfield(), LUA_TNIL, and luaL_getmetatable.
Referenced by newbox().
LUALIB_API lua_State * luaL_newstate | ( | void | ) |
Definition at line 1031 of file lua-5.3.6/src/lauxlib.c.
References l_alloc(), lua_atpanic(), lua_newstate(), NULL, and panic().
LUALIB_API lua_Integer luaL_optinteger | ( | lua_State * | L, |
int | arg, | ||
lua_Integer | def ) |
Definition at line 440 of file lua-5.3.6/src/lauxlib.c.
References arg, luaL_checkinteger(), and luaL_opt.
LUALIB_API const char * luaL_optlstring | ( | lua_State * | L, |
int | arg, | ||
const char * | def, | ||
size_t * | len ) |
Definition at line 397 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_isnoneornil, and luaL_checklstring().
LUALIB_API lua_Number luaL_optnumber | ( | lua_State * | L, |
int | arg, | ||
lua_Number | def ) |
Definition at line 417 of file lua-5.3.6/src/lauxlib.c.
References arg, luaL_checknumber(), and luaL_opt.
LUALIB_API char * luaL_prepbuffsize | ( | luaL_Buffer * | B, |
size_t | sz ) |
Definition at line 505 of file lua-5.3.6/src/lauxlib.c.
References luaL_Buffer::b, buffonstack, luaL_Buffer::L, luaL_error(), luaL_Buffer::n, newbox(), resizebox(), and luaL_Buffer::size.
Referenced by luaL_addlstring(), and luaL_buffinitsize().
LUALIB_API void luaL_pushresult | ( | luaL_Buffer * | B | ) |
Definition at line 542 of file lua-5.3.6/src/lauxlib.c.
References luaL_Buffer::b, buffonstack, luaL_Buffer::L, lua_pushlstring(), lua_remove, luaL_Buffer::n, and resizebox().
Referenced by luaL_gsub(), and luaL_pushresultsize().
LUALIB_API void luaL_pushresultsize | ( | luaL_Buffer * | B, |
size_t | sz ) |
Definition at line 552 of file lua-5.3.6/src/lauxlib.c.
References luaL_addsize, and luaL_pushresult().
LUALIB_API int luaL_ref | ( | lua_State * | L, |
int | t ) |
Definition at line 595 of file lua-5.3.6/src/lauxlib.c.
References freelist, lua_absindex(), lua_isnil, lua_pop, lua_rawgeti(), lua_rawlen, lua_rawseti(), LUA_REFNIL, and lua_tointeger.
LUALIB_API void luaL_requiref | ( | lua_State * | L, |
const char * | modname, | ||
lua_CFunction | openf, | ||
int | glb ) |
Definition at line 971 of file lua-5.3.6/src/lauxlib.c.
References lua_call, lua_getfield(), LUA_LOADED_TABLE, lua_pop, lua_pushcfunction, lua_pushstring(), lua_pushvalue(), LUA_REGISTRYINDEX, lua_remove, lua_setfield(), lua_setglobal, lua_toboolean(), and luaL_getsubtable().
LUALIB_API void luaL_setfuncs | ( | lua_State * | L, |
const luaL_Reg * | l, | ||
int | nup ) |
Definition at line 934 of file lua-5.3.6/src/lauxlib.c.
References luaL_Reg::func, lua_pop, lua_pushcclosure(), lua_pushvalue(), lua_setfield(), luaL_checkstack(), luaL_Reg::name, and NULL.
LUALIB_API void luaL_setmetatable | ( | lua_State * | L, |
const char * | tname ) |
Definition at line 312 of file lua-5.3.6/src/lauxlib.c.
References lua_setmetatable(), and luaL_getmetatable.
LUALIB_API void * luaL_testudata | ( | lua_State * | L, |
int | ud, | ||
const char * | tname ) |
Definition at line 318 of file lua-5.3.6/src/lauxlib.c.
References lua_getmetatable(), lua_pop, lua_rawequal(), lua_touserdata(), luaL_getmetatable, and NULL.
Referenced by luaL_checkudata().
LUALIB_API const char * luaL_tolstring | ( | lua_State * | L, |
int | idx, | ||
size_t * | len ) |
Definition at line 810 of file lua-5.3.6/src/lauxlib.c.
References lua_isinteger(), lua_isstring(), lua_pushfstring(), lua_pushliteral, lua_pushstring(), lua_pushvalue(), lua_remove, LUA_TBOOLEAN, LUA_TNIL, LUA_TNUMBER, lua_toboolean(), lua_tointeger, lua_tolstring(), lua_tonumber, lua_topointer(), lua_tostring, LUA_TSTRING, lua_type(), LUAI_UACINT, LUAI_UACNUMBER, luaL_callmeta(), luaL_error(), luaL_getmetafield(), and luaL_typename.
LUALIB_API void luaL_traceback | ( | lua_State * | L, |
lua_State * | L1, | ||
const char * | msg, | ||
int | level ) |
Definition at line 125 of file lua-5.3.6/src/lauxlib.c.
References lua_Debug::currentline, lua_Debug::istailcall, lastlevel(), LEVELS1, LEVELS2, lua_concat(), lua_getinfo(), lua_getstack(), lua_gettop(), lua_pushfstring(), lua_pushliteral, luaL_checkstack(), NULL, pushfuncname(), and lua_Debug::short_src.
LUALIB_API void luaL_unref | ( | lua_State * | L, |
int | t, | ||
int | ref ) |
Definition at line 616 of file lua-5.3.6/src/lauxlib.c.
References freelist, lua_absindex(), lua_pushinteger(), lua_rawgeti(), and lua_rawseti().
LUALIB_API void luaL_where | ( | lua_State * | L, |
int | level ) |
Definition at line 205 of file lua-5.3.6/src/lauxlib.c.
References lua_Debug::currentline, lua_getinfo(), lua_getstack(), lua_pushfstring(), and lua_Debug::short_src.
Referenced by luaL_error().
|
static |
Definition at line 482 of file lua-5.3.6/src/lauxlib.c.
References UBox::box, boxgc(), UBox::bsize, lua_newuserdata, lua_pushcfunction, lua_setfield(), lua_setmetatable(), luaL_newmetatable(), NULL, and resizebox().
Referenced by luaL_prepbuffsize().
|
static |
Definition at line 1024 of file lua-5.3.6/src/lauxlib.c.
References lua_tostring, and lua_writestringerror.
Referenced by luaL_newstate().
Definition at line 94 of file lua-5.3.6/src/lauxlib.c.
References lua_Debug::linedefined, lua_pushfstring(), lua_pushliteral, lua_remove, lua_tostring, lua_Debug::name, lua_Debug::namewhat, pushglobalfuncname(), lua_Debug::short_src, and lua_Debug::what.
Referenced by luaL_traceback().
Definition at line 73 of file lua-5.3.6/src/lauxlib.c.
References findfield(), lua_copy(), lua_getfield(), lua_getinfo(), lua_gettop(), LUA_LOADED_TABLE, lua_pop, lua_pushstring(), LUA_REGISTRYINDEX, lua_remove, lua_settop(), lua_tostring, and name.
Referenced by luaL_argerror(), and pushfuncname().
|
static |
Definition at line 461 of file lua-5.3.6/src/lauxlib.c.
References UBox::box, UBox::bsize, lua_getallocf(), lua_touserdata(), luaL_error(), NULL, and resizebox().
Referenced by boxgc(), luaL_prepbuffsize(), luaL_pushresult(), newbox(), and resizebox().
|
static |
Definition at line 669 of file lua-5.3.6/src/lauxlib.c.
References LoadF::buff, LoadF::f, and LoadF::n.
Referenced by skipcomment().
|
static |
Definition at line 690 of file lua-5.3.6/src/lauxlib.c.
References LoadF::f, and skipBOM().
Referenced by luaL_loadfilex().
|
static |
Definition at line 196 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_typename(), and typeerror().
Referenced by interror(), luaL_checklstring(), luaL_checknumber(), and luaL_checktype().
|
static |
Definition at line 182 of file lua-5.3.6/src/lauxlib.c.
References arg, lua_pushfstring(), LUA_TLIGHTUSERDATA, lua_tostring, LUA_TSTRING, lua_type(), luaL_argerror(), luaL_getmetafield(), and luaL_typename.
Referenced by luaL_checkudata(), and tag_error().