MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / lua_pushfstring

Function lua_pushfstring

Source/Misc/lua/src/lua.c:2322–2332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2320
2321
2322LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
2323const char *ret;
2324va_list argp;
2325lua_lock(L);
2326luaC_checkGC(L);
2327va_start(argp, fmt);
2328ret = luaO_pushvfstring(L, fmt, argp);
2329va_end(argp);
2330lua_unlock(L);
2331return ret;
2332}
2333
2334
2335LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {

Callers 15

luausb_generic_tostringFunction · 0.85
typeerrorFunction · 0.85
format_errorMethod · 0.85
static_class_gettableMethod · 0.85
tostringMethod · 0.85
luaL_tolstringFunction · 0.85
set_instance_valueFunction · 0.85
dispatch_operatorFunction · 0.85
luaL_typerrorFunction · 0.85
luaL_whereFunction · 0.85
luaL_checkoptionFunction · 0.85
errfileFunction · 0.85

Calls 1

luaO_pushvfstringFunction · 0.85

Tested by

no test coverage detected