| 158 | } |
| 159 | |
| 160 | std::string |
| 161 | escape_json(std::string_view s) |
| 162 | { |
| 163 | std::ostringstream o; |
| 164 | esc_json_out(s.data(), s.length(), o); |
| 165 | return o.str(); |
| 166 | } |
| 167 | |
| 168 | std::string |
| 169 | escape_json(char const *buf, int64_t size) |
no test coverage detected