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

Function lua_pushvfstring

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

Source from the content-addressed store, hash-verified

529
530
531LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
532 va_list argp) {
533 const char *ret;
534 lua_lock(L);
535 luaC_checkGC(L);
536 ret = luaO_pushvfstring(L, fmt, argp);
537 lua_unlock(L);
538 return ret;
539}
540
541
542LUA_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