arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / strcoll.c
blob467ea039d8c77b75a6650f77bd3b33b8ab8786bb
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 /* FIXME: Implement strcoll() properly */
46 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
48 return strcmp(str1, str2);
49 } /* strcoll */