| 11393 | return s.find( infix ) != std::string::npos; |
| 11394 | } |
| 11395 | void toLowerInPlace( std::string& s ) { |
| 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 ); |