3 <<strcoll>>---locale specific character string compare
10 int strcoll(const char *<[stra]>, const char * <[strb]>);
14 int strcoll(<[stra]>, <[strb]>)
19 <<strcoll>> compares the string pointed to by <[stra]> to
20 the string pointed to by <[strb]>, using an interpretation
21 appropriate to the current <<LC_COLLATE>> state.
24 If the first string is greater than the second string,
25 <<strcoll>> returns a number greater than zero. If the two
26 strings are equivalent, <<strcoll>> returns zero. If the first
27 string is less than the second string, <<strcoll>> returns a
28 number less than zero.
31 <<strcoll>> is ANSI C.
33 <<strcoll>> requires no supporting OS subroutines.
42 _DEFUN (strcoll
, (a
, b
),