MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / lua_pushvfstring

Function lua_pushvfstring

deps/lua/src/lapi.c:462–470  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

460
461
462LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
463 va_list argp) {
464 const char *ret;
465 lua_lock(L);
466 luaC_checkGC(L);
467 ret = luaO_pushvfstring(L, fmt, argp);
468 lua_unlock(L);
469 return ret;
470}
471
472
473LUA_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