MCPcopy Create free account
hub / github.com/Barracuda09/SATPI / getFormattedString

Method getFormattedString

src/StringConverter.cpp:107–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105}
106
107std::string StringConverter::getFormattedString(const char *fmt, ...) {
108 std::string str;
109 va_list arglist;
110 va_start(arglist, fmt);
111 addFormattedStringBasic(str, fmt, arglist);
112 va_end(arglist);
113 return str;
114}
115
116std::string StringConverter::convertToHexASCIITable(const unsigned char *p, const std::size_t length, const std::size_t blockSize) {
117 if (blockSize == 0) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected