MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / luaO_pushfstring

Function luaO_pushfstring

other_src/lua/src/lobject.cpp:173–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 8

errorFunction · 0.70
luaU_undumpFunction · 0.70
addinfoFunction · 0.70
luaX_token2strFunction · 0.70
luaX_lexerrorFunction · 0.70
error_expectedFunction · 0.70
errorlimitFunction · 0.70
check_matchFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected