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

Function lua_pushfstring

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

Source from the content-addressed store, hash-verified

537
538
539LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
540 const char *ret;
541 va_list argp;
542 lua_lock(L);
543 luaC_checkGC(L);
544 va_start(argp, fmt);
545 ret = luaO_pushvfstring(L, fmt, argp);
546 va_end(argp);
547 lua_unlock(L);
548 return ret;
549}
550
551
552LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 10

pushfuncnameFunction · 0.70
luaL_tracebackFunction · 0.70
typeerrorFunction · 0.70
luaL_whereFunction · 0.70
luaL_checkoptionFunction · 0.70
luaL_tolstringFunction · 0.70
zcp_table_to_nvlistFunction · 0.50
zcp_lua_to_nvlist_implFunction · 0.50
zcp_eval_implFunction · 0.50
zcp_pool_errorFunction · 0.50

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected