MCPcopy Create free account
hub / github.com/Overload-Technologies/Overload / lua_pushfstring

Function lua_pushfstring

Dependencies/lua/src/lapi.c:566–576  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

564
565
566LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
567 const char *ret;
568 va_list argp;
569 lua_lock(L);
570 va_start(argp, fmt);
571 ret = luaO_pushvfstring(L, fmt, argp);
572 va_end(argp);
573 luaC_checkGC(L);
574 lua_unlock(L);
575 return ret;
576}
577
578
579LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

push_type_panic_stringFunction · 0.85
compat53_pushfuncnameFunction · 0.85
luaL_tracebackFunction · 0.85
luaL_fileresultFunction · 0.85
compat53_checkmodeFunction · 0.85
compat53_errfileFunction · 0.85
luaL_loadfilexFunction · 0.85
luaL_tolstringFunction · 0.85
runCFunction · 0.85
pushfuncnameFunction · 0.85
luaL_tracebackFunction · 0.85
luaL_typeerrorFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by 1

runCFunction · 0.68