IMPORT_C int strcasecmp(const char *, const char *);
Description
Compares the null-terminated strings left and right and returns an integer greater than,equal to, or less than zero (0), accordingly
as left is lexicographically greater than,equal to, or less than right after translation of each corresponding character to
lowercase.
Parameters
const char * |
The first string to compare.
|
const char * |
The second string to compare.
|
|
Return value
int |
an integer greater than, equal to, or less than zero (0), accordingly as the string left is greater than, equal to, or less
than the string right.
|
|