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

Function lua_pushvfstring

third-party/lua-5.5.0/src/lapi.c:587–595  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

585
586
587LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
588 va_list argp) {
589 const char *ret;
590 lua_lock(L);
591 ret = luaO_pushvfstring(L, fmt, argp);
592 luaC_checkGC(L);
593 lua_unlock(L);
594 return ret;
595}
596
597
598LUA_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