MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / lua_pushvfstring

Function lua_pushvfstring

3rd/lua-5.4.3/src/lapi.c:549–557  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

547
548
549LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
550 va_list argp) {
551 const char *ret;
552 lua_lock(L);
553 ret = luaO_pushvfstring(L, fmt, argp);
554 luaC_checkGC(L);
555 lua_unlock(L);
556 return ret;
557}
558
559
560LUA_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