| 30 | } |
| 31 | |
| 32 | static string Upper (string s) |
| 33 | { |
| 34 | for (auto & c : s) c = toupper((unsigned char)c); |
| 35 | return s; |
| 36 | } |
| 37 | |
| 38 | // collapse internal whitespace to single blanks (for keyword matching) |
| 39 | static string CollapseWS (const string & s) |
no outgoing calls
no test coverage detected