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

Function lua_pushfstring

lua/lapi.c:480–490  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

478
479
480LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
481 const char *ret;
482 va_list argp;
483 lua_lock(L);
484 luaC_checkGC(L);
485 va_start(argp, fmt);
486 ret = luaO_pushvfstring(L, fmt, argp);
487 va_end(argp);
488 lua_unlock(L);
489 return ret;
490}
491
492
493LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

pushlineFunction · 0.85
dottyFunction · 0.85
luaB_tostringFunction · 0.85
auxresumeFunction · 0.85
l_concatFunction · 0.85
luaL_typerrorFunction · 0.85
luaL_whereFunction · 0.85
luaL_checkoptionFunction · 0.85
errfileFunction · 0.85
luaL_loadfileFunction · 0.85
pusherrorFunction · 0.85
ll_symFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected