MCPcopy Create free account
hub / github.com/BZFlag-Dev/bzflag / lua_pushfstring

Function lua_pushfstring

other_src/lua/src/lapi.cpp:505–515  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

503
504
505LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
506 const char *ret;
507 va_list argp;
508 lua_lock(L);
509 luaC_checkGC(L);
510 va_start(argp, fmt);
511 ret = luaO_pushvfstring(L, fmt, argp);
512 va_end(argp);
513 lua_unlock(L);
514 return ret;
515}
516
517
518LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

os_pushresultFunction · 0.70
pusherrorFunction · 0.70
ll_symFunction · 0.70
ll_registerFunction · 0.70
findfileFunction · 0.70
mkfuncnameFunction · 0.70
loader_CrootFunction · 0.70
loader_preloadFunction · 0.70
val2strFunction · 0.70
findbackFunction · 0.70
pushresultFunction · 0.70
fileerrorFunction · 0.70

Calls 1

luaO_pushvfstringFunction · 0.70

Tested by

no test coverage detected