| 9586 | return s.find( infix ) != std::string::npos; |
| 9587 | } |
| 9588 | char toLowerCh(char c) { |
| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected