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

Function lua_pushfstring

deps/lua/src/lapi.c:473–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471
472
473LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
474 const char *ret;
475 va_list argp;
476 lua_lock(L);
477 luaC_checkGC(L);
478 va_start(argp, fmt);
479 ret = luaO_pushvfstring(L, fmt, argp);
480 va_end(argp);
481 lua_unlock(L);
482 return ret;
483}
484
485
486LUA_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
controloptionsFunction · 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