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

Function lua_pushvfstring

src/Chain/libraries/glua/lapi.cpp:511–519  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509
510
511LUA_API const char *lua_pushvfstring(lua_State *L, const char *fmt,
512 va_list argp) {
513 const char *ret;
514 lua_lock(L);
515 luaC_checkGC(L);
516 ret = luaO_pushvfstring(L, fmt, argp);
517 lua_unlock(L);
518 return ret;
519}
520
521
522LUA_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