mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
385fdfdfeb
svn path=/trunk/; revision=3674
23 lines
562 B
C
23 lines
562 B
C
/* $Id: strcoll.c,v 1.4 2002/10/29 04:45:42 rex Exp $
|
|
*/
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS POSIX+ Subsystem
|
|
* FILE: subsys/psx/lib/psxdll/string/strcoll.c
|
|
* PURPOSE: string comparison using collating information
|
|
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
|
|
* UPDATE HISTORY:
|
|
* 20/01/2002: Created
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <psx/debug.h>
|
|
|
|
int strcoll(const char *s1, const char *s2)
|
|
{
|
|
TODO("locale semantics currently unimplemented");
|
|
return (strcmp(s1, s2));
|
|
}
|
|
|
|
/* EOF */
|
|
|