MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / lua_pushvfstring

Function lua_pushvfstring

extlibs/lua/src/lapi.c:526–534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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