| 11128 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 11129 | } |
| 11130 | std::string toLower( std::string const& s ) { |
| 11131 | std::string lc = s; |
| 11132 | toLowerInPlace( lc ); |
| 11133 | return lc; |
| 11134 | } |
| 11135 | std::string trim( std::string const& str ) { |
| 11136 | static char const* whitespaceChars = "\n\r\t "; |
| 11137 | std::string::size_type start = str.find_first_not_of( whitespaceChars ); |
no test coverage detected