convert string to lower-case, modifies string
| 312 | |
| 313 | // convert string to lower-case, modifies string |
| 314 | static inline void tolower(std::string& s) { |
| 315 | std::transform(s.begin(), s.end(), s.begin(), |
| 316 | [](unsigned char c) { return std::tolower(c); }); |
| 317 | } |
| 318 | |
| 319 | static inline bool iskeyword(const std::string& str, |
| 320 | const std::string* keywords, const int nkeywords) { |
no test coverage detected