MCPcopy Create free account
hub / github.com/chen3feng/toft / StringVPrint

Function StringVPrint

base/string/format/vprint.cpp:125–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123}
124
125std::string StringVPrint(const char* format,
126 const FormatPrintArg** args, int nargs)
127{
128 std::string s;
129 int n = StringVPrintAppend(&s, format, args, nargs);
130 if (n < 0) {
131 LOG(DFATAL) << "StringVPrint error, format: " << format;
132 }
133 return s;
134}
135
136} // namespace toft
137

Callers 1

StringPrintFunction · 0.85

Calls 1

StringVPrintAppendFunction · 0.85

Tested by

no test coverage detected