MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / luaO_pushfstring

Function luaO_pushfstring

extlibs/lua/src/lobject.c:530–537  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

528
529
530const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
531 const char *msg;
532 va_list argp;
533 va_start(argp, fmt);
534 msg = luaO_pushvfstring(L, fmt, argp);
535 va_end(argp);
536 return msg;
537}
538
539/* }================================================================== */
540

Callers 15

luaX_token2strFunction · 0.85
txtTokenFunction · 0.85
lexerrorFunction · 0.85
read_long_stringFunction · 0.85
errorFunction · 0.85
fchecksizeFunction · 0.85
error_expectedFunction · 0.85
errorlimitFunction · 0.85
check_matchFunction · 0.85
check_readonlyFunction · 0.85
jumpscopeerrorFunction · 0.85
undefgotoFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected