String C++

#include 
#include 
#include 
#include 
using namespace std;
// return true if c1 < c2 (ignoring case), false otherwise
bool less_than_insensitive( char c1, char c2 )
{
   return tolower( static_cast( c1 ) ) < tolower( static_cast( c2 ) );
}
int main( )
{
}