MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / luaO_pushfstring

Function luaO_pushfstring

deps/lua/src/lobject.c:172–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170
171
172const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
173 const char *msg;
174 va_list argp;
175 va_start(argp, fmt);
176 msg = luaO_pushvfstring(L, fmt, argp);
177 va_end(argp);
178 return msg;
179}
180
181
182void luaO_chunkid (char *out, const char *source, size_t bufflen) {

Callers 7

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

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected