MCPcopy Create free account
hub / github.com/SOUI2/soui / luaO_pushfstring

Function luaO_pushfstring

third-part/lua-52/src/lobject.c:233–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231
232
233const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
234 const char *msg;
235 va_list argp;
236 va_start(argp, fmt);
237 msg = luaO_pushvfstring(L, fmt, argp);
238 va_end(argp);
239 return msg;
240}
241
242
243/* number of chars of a literal string without the ending \0 */

Callers 13

luaX_token2strFunction · 0.85
txtTokenFunction · 0.85
lexerrorFunction · 0.85
errorFunction · 0.85
error_expectedFunction · 0.85
errorlimitFunction · 0.85
check_matchFunction · 0.85
closegotoFunction · 0.85
undefgotoFunction · 0.85
checkrepeatedFunction · 0.85
addinfoFunction · 0.85
checkmodeFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected