MCPcopy Create free account
hub / github.com/F-Stack/f-stack / lua_pushvfstring

Function lua_pushvfstring

freebsd/contrib/openzfs/module/lua/lapi.c:528–536  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526
527
528LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
529 va_list argp) {
530 const char *ret;
531 lua_lock(L);
532 luaC_checkGC(L);
533 ret = luaO_pushvfstring(L, fmt, argp);
534 lua_unlock(L);
535 return ret;
536}
537
538
539LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {

Callers 2

luaL_errorFunction · 0.70
zcp_argerrorFunction · 0.50

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected