here is message of the compiler :

Code:
util.h(103) : error C2244: 'EqualOrNot' : unable to resolve function overload
here is the function :
Code:
bool utility::EqualOrNot(char *x, char *y)
{
	if (strlen(*x) != strlen(*y))
		return 0;
	for (unsigned short int i = 0; i < strlen(*x); i++)
		if (*x[0] != *y[0])
			return false;
	
	return 1;
}