MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / luaO_pushfstring

Function luaO_pushfstring

ThirdParty/lua/lua/lobject.c:416–423  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

414
415
416const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
417 const char *msg;
418 va_list argp;
419 va_start(argp, fmt);
420 msg = luaO_pushvfstring(L, fmt, argp);
421 va_end(argp);
422 return msg;
423}
424
425
426/* number of chars of a literal string without the ending \0 */

Callers 15

luaX_token2strFunction · 0.85
txtTokenFunction · 0.85
lexerrorFunction · 0.85
read_long_stringFunction · 0.85
luaO_pushvfstringFunction · 0.85
errorFunction · 0.85
fchecksizeFunction · 0.85
error_expectedFunction · 0.85
errorlimitFunction · 0.85
check_matchFunction · 0.85
closegotoFunction · 0.85
undefgotoFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected