| 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); |
| 9523 | return lc; |
| 9524 | } |
| 9525 | std::string trim(std::string const &str) { |
| 9526 | static char const *whitespaceChars = "\n\r\t "; |
| 9527 | std::string::size_type start = str.find_first_not_of(whitespaceChars); |
no test coverage detected