| 11105 | |
| 11106 | namespace { |
| 11107 | char toLowerCh(char c) { |
| 11108 | return static_cast<char>( std::tolower( c ) ); |
| 11109 | } |
| 11110 | } |
| 11111 | |
| 11112 | bool startsWith( std::string const& s, std::string const& prefix ) { |
nothing calls this directly
no outgoing calls
no test coverage detected