| 324 | } |
| 325 | |
| 326 | void string_split_lines(const std::string& text, std::vector<std::string>& split) |
| 327 | { |
| 328 | string_split(text, "\r\n", split); |
| 329 | } |
| 330 | |
| 331 | std::string string_slurp_if(std::string::const_iterator& itr, std::string::const_iterator itrEnd, char first, char last) |
| 332 | { |
nothing calls this directly
no test coverage detected