| 116 | } |
| 117 | |
| 118 | int StringVPrintTo(std::string* target, const char* format, |
| 119 | const FormatPrintArg** args, int nargs) |
| 120 | { |
| 121 | target->clear(); |
| 122 | return StringVPrintAppend(target, format, args, nargs); |
| 123 | } |
| 124 | |
| 125 | std::string StringVPrint(const char* format, |
| 126 | const FormatPrintArg** args, int nargs) |
no test coverage detected