MCPcopy Create free account
hub / github.com/Serial-Studio/Serial-Studio / lua_pushvfstring

Function lua_pushvfstring

lib/lua/src/lapi.c:555–563  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

553
554
555LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
556 va_list argp) {
557 const char *ret;
558 lua_lock(L);
559 ret = luaO_pushvfstring(L, fmt, argp);
560 luaC_checkGC(L);
561 lua_unlock(L);
562 return ret;
563}
564
565
566LUA_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