strcoll
- compare strings according to current collation
LIBRARY
Lb libc
SYNOPSIS
#include <string.h> int
strcoll (const char *s1 const char *s2);
DESCRIPTION
The
strcoll ();
function
lexicographically compares the null-terminated strings
Fa s1
and
Fa s2
according to the current locale collation
and returns an integer greater than, equal to, or less than 0,
according as
Fa s1
is greater than, equal to, or less than
Fa s2 .
If information about the current locale collation is not available,
the value of
strcmp (s1 s2);
is returned.