MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_pushfstring

Function lua_pushfstring

third-party/lua-5.2.4/src/lapi.c:542–552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

540
541
542LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
543 const char *ret;
544 va_list argp;
545 lua_lock(L);
546 luaC_checkGC(L);
547 va_start(argp, fmt);
548 ret = luaO_pushvfstring(L, fmt, argp);
549 va_end(argp);
550 lua_unlock(L);
551 return ret;
552}
553
554
555LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

pushlineFunction · 0.70
dottyFunction · 0.70
pushfuncnameFunction · 0.70
luaL_tracebackFunction · 0.70
typeerrorFunction · 0.70
luaL_whereFunction · 0.70
luaL_fileresultFunction · 0.70
luaL_checkoptionFunction · 0.70
errfileFunction · 0.70
luaL_loadfilexFunction · 0.70
luaL_tolstringFunction · 0.70
pusherrorFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected