summaryrefslogtreecommitdiff
path: root/tests/utils/test5.cpp
blob: 507d3c393321e7b83598bbcbe51a0854b100bf8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "StringUtils.hpp"

#include <iostream>

using namespace std;

int main( void )
{
	if( stringicasecmp( "test", "TEST" ) ) {
		cout << "test == TEST" << endl;
	} else {
		cout << "test <> TEST" << endl;
	}
	
	return 0;
}