MCPcopy Create free account
hub / github.com/DFHack/dfhack / lua_pushvfstring

Function lua_pushvfstring

depends/lua/src/lapi.c:508–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

506
507
508LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
509 va_list argp) {
510 const char *ret;
511 lua_lock(L);
512 ret = luaO_pushvfstring(L, fmt, argp);
513 luaC_checkGC(L);
514 lua_unlock(L);
515 return ret;
516}
517
518
519LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {

Callers 1

luaL_errorFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected