| 393 | } |
| 394 | |
| 395 | std::string StringUtil::hexPrint( |
| 396 | const void* data, |
| 397 | size_t size, |
| 398 | bool sep /* = true */, |
| 399 | bool reverse /* = fase */) { |
| 400 | Buffer buf(data, size); |
| 401 | return BufferUtil::hexPrint(&buf, sep, reverse); |
| 402 | } |
| 403 | |
| 404 | std::basic_string<char32_t> StringUtil::convertUTF8To32( |
| 405 | const std::basic_string<char>& str) { |
nothing calls this directly
no outgoing calls
no test coverage detected