MCPcopy Create free account
hub / github.com/baidu/tera / StringFormatAppend

Function StringFormatAppend

src/common/base/string_format.cc:46–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46size_t StringFormatAppend(std::string* dst, const char* format, ...) {
47 va_list ap;
48 va_start(ap, format);
49 size_t result = StringFormatAppendVA(dst, format, ap);
50 va_end(ap);
51 return result;
52}
53
54size_t StringFormatTo(std::string* dst, const char* format, ...) {
55 va_list ap;

Callers

nothing calls this directly

Calls 1

StringFormatAppendVAFunction · 0.85

Tested by

no test coverage detected