MCPcopy Create free account
hub / github.com/catboost/catboost / sprintf

Function sprintf

util/string/printf.cpp:12–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10}
11
12int sprintf(TString& s, const char* c, ...) {
13 va_list params;
14 va_start(params, c);
15 const int k = vsprintf(s, c, params);
16 va_end(params);
17 return k;
18}
19
20TString Sprintf(const char* c, ...) {
21 TString s;

Callers 15

dlg_generic_outputFunction · 0.85
CEscapeInternalFunction · 0.85
getUTCOffsetToBufferFunction · 0.85
CEscapeInternalFunction · 0.85
qh_optionFunction · 0.85
qh_rboxpoints2Function · 0.85
ComponentNamesFunction · 0.85
PrintFloatResultsFunction · 0.85
TakeFloatValuesFunction · 0.85
PrintEncodedResultsFunction · 0.85
TakeCGATSValuesFunction · 0.85
PutCGATSValuesFunction · 0.85

Calls 1

vsprintfFunction · 0.85

Tested by

no test coverage detected