2.3.12 int strcasecmp_P
int strcasecmp_P(const char *, const char *) __ATTR_PURE__
The strcasecmp_P() function compares the two strings s1
and s2
, ignoring the case of the characters.
Remember:
The strcasecmp_P() function returns an integer less than, equal to, or greater than zero if s1
is found, respectively, to be less than, to match, or be greater than s2
. A consequence of the ordering used by strcasecmp_P() is that if s1
is an initial substring of s2
, then s1
is considered to be "less than" s2
.