| 186 | } |
| 187 | |
| 188 | static Rune ToLowerRuneLatin1(Rune r) { |
| 189 | if ('A' <= r && r <= 'Z') |
| 190 | r += 'a' - 'A'; |
| 191 | return r; |
| 192 | } |
| 193 | |
| 194 | Prefilter* Prefilter::FromString(const std::string& str) { |
| 195 | Prefilter* m = new Prefilter(Prefilter::ATOM); |
no outgoing calls
no test coverage detected