String comparison that ignores letter case.
#include <extras/extras_string.h>
int stricmp(const char *s1,const char *s2);
s1
A pointer to a null-terminated character string.
s2
A pointer to a null-terminated character string.
This function returns one of these values:
- zero if all characters in s1 are identical to and appear in the same order as the characters in s2
- a negative value if the numeric value of first non-matching character in s1 is less than its counterpart in s2
- a positive value if the numeric value of first non-matching character in s1 is greater than its counterpart in s2 This facility may not be available on some configurations of the EWL.