Synopsis
int strcmp(const char *s1,
           const char *s2);
Description

strcmp compares the string pointed to by s1 to the string pointed to by s2. strcmp returns an integer greater than, equal to, or less than zero if the string pointed to by s1 is greater than, equal to, or less than the string pointed to by s2.