Don't call ReadArgs() if started from WB.
[tangerine.git] / compiler / clib / strcoll.c
bloba2e183c720407add1e26572d4ba21de63ec01d07
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 ANSI C function strcoll().
6 */
8 #include <aros/debug.h>
10 /*****************************************************************************
12 NAME */
13 #include <string.h>
15 int strcoll (
17 /* SYNOPSIS */
18 const char * str1,
19 const char * str2)
21 /* FUNCTION
22 Calculate str1 - str2. The operation is based on strings interpreted
23 as appropriate for the program's current locale for category LC_COLLATE.
25 INPUTS
26 str1, str2 - Strings to compare
28 RESULT
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.
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 ******************************************************************************/
45 # warning Implement strcoll() properly
46 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
48 return strcmp(str1, str2);
49 } /* strcoll */