MCPcopy Create free account
hub / github.com/crownengine/crown / sprintf

Function sprintf

3rdparty/bx/src/crtnone.cpp:283–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

281}
282
283extern "C" int sprintf(char* _out, const char* _format, ...)
284{
285 va_list argList;
286 va_start(argList, _format);
287 int32_t len = bx::vsnprintf(_out, INT32_MAX, _format, argList);
288 va_end(argList);
289 return len;
290}
291
292extern "C" int snprintf(char* _out, size_t _max, const char* _format, ...)
293{

Callers 15

perftools_addtraceFunction · 0.85
ra_dprintfFunction · 0.85
libdef_endmoduleFunction · 0.85
sym_decorateFunction · 0.85
luaO_pushvfstringFunction · 0.85
str_formatFunction · 0.85
trace_add_dataFunction · 0.85
convert_to_stringFunction · 0.85
fpp_initdefinesFunction · 0.85

Calls 1

vsnprintfFunction · 0.70

Tested by

no test coverage detected