strcoll function — Compares strings using locale's collation order
int strcoll(const char* s1, const char* s2)
The strcoll
function
compares two null-terminated strings, interpreting the strings
according to the LC_COLLATE
(defined in <clocale>
)
category of the current C locale. The return value is the same as
that of strcmp
.