| 9515 | return static_cast<char>(std::tolower(c)); |
| 9516 | } |
| 9517 | void toLowerInPlace(std::string &s) { |
| 9518 | std::transform(s.begin(), s.end(), s.begin(), toLowerCh); |
| 9519 | } |
| 9520 | std::string toLower(std::string const &s) { |
| 9521 | std::string lc = s; |
| 9522 | toLowerInPlace(lc); |