MCPcopy Create free account
hub / github.com/defold/defold / lua_pushfstring

Function lua_pushfstring

engine/lua/src/lua/lapi.c:473–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

471
472
473LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
474 const char *ret;
475 va_list argp;
476 lua_lock(L);
477 luaC_checkGC(L);
478 va_start(argp, fmt);
479 ret = luaO_pushvfstring(L, fmt, argp);
480 va_end(argp);
481 lua_unlock(L);
482 return ret;
483}
484
485
486LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

ScriptInstance_tostringFunction · 0.85
Resource_GetMountsFunction · 0.85
LoadModuleFunction · 0.85
Sys_LoadResourceFunction · 0.85
URL_tostringFunction · 0.85
URL_concatFunction · 0.85
BacktraceErrorHandlerFunction · 0.85
Vector_tostringFunction · 0.85
Vector3_tostringFunction · 0.85
Vector4_tostringFunction · 0.85
Quat_tostringFunction · 0.85
Matrix4_tostringFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected