MCPcopy Create free account
hub / github.com/cvg/pixel-perfect-sfm / StringPrintf

Function StringPrintf

pixsfm/util/src/stringprintf.cc:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85string StringPrintf(const char* format, ...) {
86 va_list ap;
87 va_start(ap, format);
88 string result;
89 StringAppendV(&result, format, ap);
90 va_end(ap);
91 return result;
92}
93
94const string& SStringPrintf(string* dst, const char* format, ...) {
95 va_list ap;

Calls 1

StringAppendVFunction · 0.85

Tested by

no test coverage detected