2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
5 C99 function strcoll().
8 /*****************************************************************************
20 Calculate str1 - str2. The operation is based on strings interpreted
21 as appropriate for the program's current locale for category LC_COLLATE.
24 str1, str2 - Strings to compare
27 The difference of the strings. The difference is 0, if both are
28 equal, < 0 if str1 < str2 and > 0 if str1 > str2. Note that
29 it may be greater then 1 or less than -1.
32 stdc.library only implements "C" locale so strcoll() is equivalent
43 ******************************************************************************/
45 return strcmp(str1
, str2
);