MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / lua_pushvfstring

Function lua_pushvfstring

lua/lapi.c:469–477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

467
468
469LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
470 va_list argp) {
471 const char *ret;
472 lua_lock(L);
473 luaC_checkGC(L);
474 ret = luaO_pushvfstring(L, fmt, argp);
475 lua_unlock(L);
476 return ret;
477}
478
479
480LUA_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