| 7066 | } |
| 7067 | |
| 7068 | static void llama_escape_whitespace(std::string & text) { |
| 7069 | replace_all(text, " ", "\xe2\x96\x81"); |
| 7070 | } |
| 7071 | |
| 7072 | static void llama_unescape_whitespace(std::string & word) { |
| 7073 | replace_all(word, "\xe2\x96\x81", " "); |
no test coverage detected