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

Function luaO_pushfstring

xrepo/packages/l/lua/port/lua/src/lobject.c:539–546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

537
538
539const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
540 const char *msg;
541 va_list argp;
542 va_start(argp, fmt);
543 msg = luaO_pushvfstring(L, fmt, argp);
544 va_end(argp);
545 return msg;
546}
547
548/* }================================================================== */
549

Callers 15

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

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected