2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 ANSI C function strcoll().
8 #include <aros/debug.h>
10 /*****************************************************************************
22 Calculate str1 - str2. The operation is based on strings interpreted
23 as appropriate for the program's current locale for category LC_COLLATE.
26 str1, str2 - Strings to compare
29 The difference of the strings. The difference is 0, if both are
30 equal, < 0 if str1 < str2 and > 0 if str1 > str2. Note that
31 it may be greater then 1 or less than -1.
43 ******************************************************************************/
45 # warning Implement strcoll() properly
46 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
48 return strcmp(str1
, str2
);