MCPcopy Create free account
hub / github.com/WinMerge/winmerge / format_string3

Function format_string3

Src/Common/UnicodeString.cpp:341–345  ·  view source on GitHub ↗

* @brief Output the converted string according to the printf()-style formatting. * @param [in] fmt printf()-style formatting. * @param [in] arg1 Value of "%1" of fmt. * @param [in] arg2 Value of "%2" of fmt. * @param [in] arg3 Value of "%3" of fmt. * @return Formatted output string. */

Source from the content-addressed store, hash-verified

339 * @return Formatted output string.
340 */
341String format_string3(const String& fmt, const String& arg1, const String& arg2, const String& arg3)
342{
343 const String* args[] = { &arg1, &arg2, &arg3 };
344 return format_strings(fmt, args, 3);
345}
346
347}

Callers 4

LogComparisonStartMethod · 0.85
LogErrorMethod · 0.85
GetExpressionMethod · 0.85
SetRootPathsMethod · 0.85

Calls 1

format_stringsFunction · 0.70

Tested by

no test coverage detected