MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / lua_pushvfstring

Function lua_pushvfstring

src/lapi.cpp:642–650  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

640
641
642LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
643 va_list argp) {
644 const char *ret;
645 lua_lock(L);
646 ret = luaO_pushvfstring(L, fmt, argp);
647 luaC_checkGC(L);
648 lua_unlock(L);
649 return ret;
650}
651
652
653LUA_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