MCPcopy Create free account
hub / github.com/bulletphysics/bullet3 / lua_pushfstring

Function lua_pushfstring

examples/ThirdPartyLibs/lua-5.2.3/src/lapi.c:583–594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

581}
582
583LUA_API const char *lua_pushfstring(lua_State *L, const char *fmt, ...)
584{
585 const char *ret;
586 va_list argp;
587 lua_lock(L);
588 luaC_checkGC(L);
589 va_start(argp, fmt);
590 ret = luaO_pushvfstring(L, fmt, argp);
591 va_end(argp);
592 lua_unlock(L);
593 return ret;
594}
595
596LUA_API void lua_pushcclosure(lua_State *L, lua_CFunction fn, int n)
597{

Callers 15

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
luaL_tolstringFunction · 0.85
pusherrorFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected