purely cosmetic commit: edited the introductory comments of several files to uniform...
[reactos.git] / posix / lib / psxdll / string / strcoll.c
1 /* $Id: strcoll.c,v 1.2 2002/02/20 09:17:58 hyperion Exp $
2 */
3 /*
4 * COPYRIGHT: See COPYING in the top level directory
5 * PROJECT: ReactOS POSIX+ Subsystem
6 * FILE: subsys/psx/lib/psxdll/string/strcoll.c
7 * PURPOSE: string comparison using collating information
8 * PROGRAMMER: KJK::Hyperion <noog@libero.it>
9 * UPDATE HISTORY:
10 * 20/01/2002: Created
11 */
12
13 #include <string.h>
14 #include <psx/debug.h>
15
16 int strcoll(const char *s1, const char *s2)
17 {
18 TODO("locale semantics currently unimplemented");
19 return (strcmp(s1, s2));
20 }
21
22 /* EOF */
23