MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_pushfstring

Function lua_pushfstring

third-party/lua-5.5.0/src/lapi.c:598–606  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

596
597
598LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
599 const char *ret;
600 va_list argp;
601 lua_lock(L);
602 pushvfstring(L, argp, fmt, ret);
603 luaC_checkGC(L);
604 lua_unlock(L);
605 return ret;
606}
607
608
609LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

msghandlerFunction · 0.70
addreturnFunction · 0.70
l_printFunction · 0.70
pushfuncnameFunction · 0.70
luaL_tracebackFunction · 0.70
luaL_typeerrorFunction · 0.70
luaL_whereFunction · 0.70
luaL_fileresultFunction · 0.70
luaL_checkoptionFunction · 0.70
errfileFunction · 0.70
luaL_loadfilexFunction · 0.70
luaL_tolstringFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected