| 9589 | return static_cast<char>( std::tolower( c ) ); |
| 9590 | } |
| 9591 | void toLowerInPlace( std::string& s ) { |
| 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 ); |