| 63 | } |
| 64 | |
| 65 | std::string string_printf(const char* format, ...) |
| 66 | { |
| 67 | std::va_list ap; |
| 68 | va_start(ap, format); |
| 69 | std::string result = string_vprintf(format, ap); |
| 70 | va_end(ap); |
| 71 | return result; |
| 72 | } |
| 73 | |
| 74 | std::string string_vprintf(const char* format, va_list ap) |
| 75 | { |
nothing calls this directly
no test coverage detected