| 557 | } |
| 558 | |
| 559 | static void write_hex_byte(std::string& out, uint8_t n) |
| 560 | { |
| 561 | write_hex_digit(out, n >> 4u); |
| 562 | write_hex_digit(out, n & 0x0f); |
| 563 | } |
| 564 | |
| 565 | static void escape(std::string& out, const std::string& str) |
| 566 | { |
no test coverage detected