MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_pushvfstring

Function lua_pushvfstring

Source/Misc/lua/src/lua.c:2311–2319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2309
2310
2311LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
2312va_list argp) {
2313const char *ret;
2314lua_lock(L);
2315luaC_checkGC(L);
2316ret = luaO_pushvfstring(L, fmt, argp);
2317lua_unlock(L);
2318return ret;
2319}
2320
2321
2322LUA_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