MCPcopy Create free account
hub / github.com/F-Stack/f-stack / luaO_pushfstring

Function luaO_pushfstring

freebsd/contrib/openzfs/module/lua/lobject.c:228–235  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 12

luaX_token2strFunction · 0.70
txtTokenFunction · 0.70
lexerrorFunction · 0.70
error_expectedFunction · 0.70
errorlimitFunction · 0.70
check_matchFunction · 0.70
closegotoFunction · 0.70
undefgotoFunction · 0.70
checkrepeatedFunction · 0.70
addinfoFunction · 0.70
checkmodeFunction · 0.70
GCTMFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected