MCPcopy Create free account
hub / github.com/Tencent/sluaunreal / lua_pushfstring

Function lua_pushfstring

Plugins/slua_unreal/External/lua/lapi.cpp:517–527  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515
516
517LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
518 const char *ret;
519 va_list argp;
520 lua_lock(L);
521 va_start(argp, fmt);
522 ret = luaO_pushvfstring(L, fmt, argp);
523 va_end(argp);
524 luaC_checkGC(L);
525 lua_unlock(L);
526 return ret;
527}
528
529
530LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

luaL_typerrorFunction · 0.85
auxiliar_tostringFunction · 0.85
auxiliar_typeerrorFunction · 0.85
pushutfcharFunction · 0.85
checkoptionFunction · 0.85
pusherrorFunction · 0.85
setpathFunction · 0.85
searchpathFunction · 0.85
loadfuncFunction · 0.85
searcher_CrootFunction · 0.85
searcher_preloadFunction · 0.85
f_tostringFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected