| 182 | } |
| 183 | |
| 184 | bool ContainsInsensitive(const std::wstring &haystack, const std::wstring &needle) { |
| 185 | return ToLowerCopy(haystack).find(ToLowerCopy(needle)) != std::wstring::npos; |
| 186 | } |
| 187 | |
| 188 | std::wstring NormalizeOcrLetters(const std::wstring &text) { |
| 189 | std::wstring normalized; |
no test coverage detected