MCPcopy Create free account
hub / github.com/Cubitect/cubiomes-viewer / lua_pushvfstring

Function lua_pushvfstring

lua/src/lapi.c:559–567  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

557
558
559LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
560 va_list argp) {
561 const char *ret;
562 lua_lock(L);
563 ret = luaO_pushvfstring(L, fmt, argp);
564 luaC_checkGC(L);
565 lua_unlock(L);
566 return ret;
567}
568
569
570LUA_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