MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / lua_pushvfstring

Function lua_pushvfstring

ThirdParty/lua/lua/lapi.c:502–510  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

500
501
502LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
503 va_list argp) {
504 const char *ret;
505 lua_lock(L);
506 luaC_checkGC(L);
507 ret = luaO_pushvfstring(L, fmt, argp);
508 lua_unlock(L);
509 return ret;
510}
511
512
513LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {

Callers 1

luaL_errorFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected