MCPcopy Create free account
hub / github.com/dejwk/roo_display / StringPrintf

Function StringPrintf

src/roo_display/ui/string_printer.cpp:7–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5namespace roo_display {
6
7std::string StringPrintf(const char* format, ...) {
8 va_list arg;
9 va_start(arg, format);
10 std::string result = StringVPrintf(format, arg);
11 va_end(arg);
12 return result;
13}
14
15std::string StringVPrintf(const char* format, va_list arg) {
16 return roo_io::StringVPrintf(format, arg);

Callers

nothing calls this directly

Calls 1

StringVPrintfFunction · 0.85

Tested by

no test coverage detected