MCPcopy Create free account
hub / github.com/aseprite/laf / string_printf

Function string_printf

base/string.cpp:65–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65std::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
74std::string string_vprintf(const char* format, va_list ap)
75{

Callers

nothing calls this directly

Calls 1

string_vprintfFunction · 0.85

Tested by

no test coverage detected