#include "StringUtils.hpp" #include using namespace std; int main( void ) { if( stringicasecmp( "test", "TEST" ) ) { cout << "test == TEST" << endl; } else { cout << "test <> TEST" << endl; } return 0; }