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

Function lua_pushvfstring

other_src/lua/src/lapi.cpp:494–502  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

492
493
494LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
495 va_list argp) {
496 const char *ret;
497 lua_lock(L);
498 luaC_checkGC(L);
499 ret = luaO_pushvfstring(L, fmt, argp);
500 lua_unlock(L);
501 return ret;
502}
503
504
505LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {

Callers 1

luaL_errorFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected