* @brief printf()-style formatting for STL string. * Use this function to format String:s in printf() style. */
| 187 | * Use this function to format String:s in printf() style. |
| 188 | */ |
| 189 | String format(const TCHAR *fmt, ...) |
| 190 | { |
| 191 | va_list args; |
| 192 | va_start(args, fmt); |
| 193 | String s = format_arg_list(fmt, args); |
| 194 | va_end(args); |
| 195 | return s; |
| 196 | } |
| 197 | |
| 198 | String format_strings(const String& fmt, const String *args[], size_t nargs) |
| 199 | { |
no test coverage detected