MCPcopy Create free account
hub / github.com/PlutoLang/Pluto / lua_pushfstring

Function lua_pushfstring

src/lapi.cpp:653–661  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

651
652
653LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
654 const char *ret;
655 va_list argp;
656 lua_lock(L);
657 pushvfstring(L, argp, fmt, ret);
658 luaC_checkGC(L);
659 lua_unlock(L);
660 return ret;
661}
662
663
664LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

pushutfcharFunction · 0.85
checkoptionFunction · 0.85
pusherrorFunction · 0.85
setpathFunction · 0.85
loadfuncFunction · 0.85
searcher_CrootFunction · 0.85
searcher_preloadFunction · 0.85
f_tostringFunction · 0.85
pushfuncnameFunction · 0.85
luaL_tracebackFunction · 0.85
luaL_typeerrorFunction · 0.85
luaL_whereFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected