MCPcopy Create free account
hub / github.com/SOUI2/soui / lua_pushfstring

Function lua_pushfstring

third-part/lua-52/src/lapi.c:542–552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 15

meta_getMethod · 0.85
meta_setMethod · 0.85
pushlineFunction · 0.85
dottyFunction · 0.85
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

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected