| 11396 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 11397 | } |
| 11398 | std::string toLower( std::string const& s ) { |
| 11399 | std::string lc = s; |
| 11400 | toLowerInPlace( lc ); |
| 11401 | return lc; |
| 11402 | } |
| 11403 | std::string trim( std::string const& str ) { |
| 11404 | static char const* whitespaceChars = "\n\r\t "; |
| 11405 | std::string::size_type start = str.find_first_not_of( whitespaceChars ); |
no test coverage detected