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

Function lua_pushvfstring

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

Source from the content-addressed store, hash-verified

460
461
462LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
463 va_list argp) {
464 const char *ret;
465 lua_lock(L);
466 luaC_checkGC(L);
467 ret = luaO_pushvfstring(L, fmt, argp);
468 lua_unlock(L);
469 return ret;
470}
471
472
473LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {

Callers 1

luaL_errorFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected