MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / luaO_pushfstring

Function luaO_pushfstring

lua/lobject.c:183–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181
182
183const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
184 const char *msg;
185 va_list argp;
186 va_start(argp, fmt);
187 msg = luaO_pushvfstring(L, fmt, argp);
188 va_end(argp);
189 return msg;
190}
191
192
193void luaO_chunkid (char *out, const char *source, size_t bufflen) {

Callers 8

luaX_token2strFunction · 0.85
luaX_lexerrorFunction · 0.85
errorFunction · 0.85
error_expectedFunction · 0.85
errorlimitFunction · 0.85
check_matchFunction · 0.85
codeblobFunction · 0.85
addinfoFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected