| 9592 | std::transform( s.begin(), s.end(), s.begin(), toLowerCh ); |
| 9593 | } |
| 9594 | std::string toLower( std::string const& s ) { |
| 9595 | std::string lc = s; |
| 9596 | toLowerInPlace( lc ); |
| 9597 | return lc; |
| 9598 | } |
| 9599 | std::string trim( std::string const& str ) { |
| 9600 | static char const* whitespaceChars = "\n\r\t "; |
| 9601 | std::string::size_type start = str.find_first_not_of( whitespaceChars ); |
no test coverage detected