MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / luaO_pushfstring

Function luaO_pushfstring

Source/Misc/lua/src/lua.c:7432–7439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7430
7431
7432const char *luaO_pushfstring (lua_State *L, const char *fmt, ...) {
7433const char *msg;
7434va_list argp;
7435va_start(argp, fmt);
7436msg = luaO_pushvfstring(L, fmt, argp);
7437va_end(argp);
7438return msg;
7439}
7440
7441
7442void luaO_chunkid (char *out, const char *source, size_t bufflen) {

Callers 7

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

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected