| 105 | } |
| 106 | |
| 107 | std::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 | |
| 116 | std::string StringConverter::convertToHexASCIITable(const unsigned char *p, const std::size_t length, const std::size_t blockSize) { |
| 117 | if (blockSize == 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected