MCPcopy Create free account
hub / github.com/BigPig0/RelayLive / lua_pushfstring

Function lua_pushfstring

ThirdParty/lua/lua/lapi.c:513–523  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

511
512
513LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
514 const char *ret;
515 va_list argp;
516 lua_lock(L);
517 luaC_checkGC(L);
518 va_start(argp, fmt);
519 ret = luaO_pushvfstring(L, fmt, argp);
520 va_end(argp);
521 lua_unlock(L);
522 return ret;
523}
524
525
526LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

pushfuncnameFunction · 0.85
luaL_tracebackFunction · 0.85
typeerrorFunction · 0.85
luaL_whereFunction · 0.85
luaL_fileresultFunction · 0.85
luaL_checkoptionFunction · 0.85
errfileFunction · 0.85
luaL_loadfilexFunction · 0.85
luaL_tolstringFunction · 0.85
pushutfcharFunction · 0.85
pusherrorFunction · 0.85
searchpathFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected