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

Function lua_pushfstring

third-party/lua-5.1.5/src/lapi.c:473–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471
472
473LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
474 const char *ret;
475 va_list argp;
476 lua_lock(L);
477 luaC_checkGC(L);
478 va_start(argp, fmt);
479 ret = luaO_pushvfstring(L, fmt, argp);
480 va_end(argp);
481 lua_unlock(L);
482 return ret;
483}
484
485
486LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

pushlineFunction · 0.70
dottyFunction · 0.70
luaB_tostringFunction · 0.70
auxresumeFunction · 0.70
luaL_typerrorFunction · 0.70
luaL_whereFunction · 0.70
luaL_checkoptionFunction · 0.70
errfileFunction · 0.70
luaL_loadfileFunction · 0.70
pusherrorFunction · 0.70
ll_symFunction · 0.70
ll_registerFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected