| 24 | namespace { |
| 25 | |
| 26 | bool asciiStringContains(const char* str, QChar c) |
| 27 | { |
| 28 | constexpr ushort maxAscii{127}; |
| 29 | return c.unicode() <= maxAscii && std::strchr(str, c.unicode()); |
| 30 | } |
| 31 | |
| 32 | bool isFuzzy(QChar c) |
| 33 | { |
no outgoing calls
no test coverage detected