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

Function Sprintf

util/string/printf.cpp:20–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20TString Sprintf(const char* c, ...) {
21 TString s;
22 va_list params;
23 va_start(params, c);
24 vsprintf(s, c, params);
25 va_end(params);
26 return s;
27}
28
29int fcat(TString& s, const char* c, ...) {
30 TStringOutput so(s);

Callers 15

ToStringMethod · 0.85
BindToSocketFunction · 0.85
BindToSocketFunction · 0.85
QualityBenchmarkFunction · 0.85
SpeedBenchmarkFunction · 0.85
PrepareToOpenLogFunction · 0.85
PrintSystemResourcesFunction · 0.85
DoSendMethod · 0.85
GotResponseMethod · 0.85
SetContextDataMethod · 0.85
NewRequestMethod · 0.85
FromStringMethod · 0.85

Calls 1

vsprintfFunction · 0.85

Tested by

no test coverage detected