#define strcmp(a,b) !strcmp(a,b)
-or-
inline bool strcmp(char *a, char *b)
{
if (!strcmp(a,b))
return true;
return false;
}
Do you understand what I am trying to do? Right now, strcmp returns false when the two strings match... I want it to return true.
--------------------You are not a real programmer until you end all your sentences with semicolons;
Visit the ROAD Programming Website for more programming help.