/* $Id: strcoll.c,v 1.2 2002/02/20 09:17:58 hyperion 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 * UPDATE HISTORY: * 20/01/2002: Created */ #include #include int strcoll(const char *s1, const char *s2) { TODO("locale semantics currently unimplemented"); return (strcmp(s1, s2)); } /* EOF */