String C++

#include 
#include 
#include 
#include 
using namespace std;
// return true if c1 equals c2 (regardless of case), false otherwise
bool equal_to_insensitive( char c1, char c2 ){
   return tolower( static_cast( c1 ) ) == tolower( static_cast( c2 ) );
}
int main( )
{
}