wcscoll function — Compares wide strings using locale's collation order
int wcscoll(const wchar_t* s1, const wchar_t* s2)
The wcscoll
function
compares two null-terminated wide 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 wcscmp
.