3 <<strcoll>>---locale-specific character string compare
10 int strcoll(const char *<[stra]>, const char * <[strb]>);
13 <<strcoll>> compares the string pointed to by <[stra]> to
14 the string pointed to by <[strb]>, using an interpretation
15 appropriate to the current <<LC_COLLATE>> state.
17 (NOT Cygwin:) The current implementation of <<strcoll>> simply
18 uses <<strcmp>> and does not support any language-specific sorting.
21 If the first string is greater than the second string,
22 <<strcoll>> returns a number greater than zero. If the two
23 strings are equivalent, <<strcoll>> returns zero. If the first
24 string is less than the second string, <<strcoll>> returns a
25 number less than zero.
28 <<strcoll>> is ANSI C.
30 <<strcoll>> requires no supporting OS subroutines.
39 strcoll (const char *a
,