Subversion Repositories Kolibri OS

Rev

Rev 8793 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8793 Rev 9765
Line 1... Line -...
1
/* strcoll( const char *, const char * )
-
 
2
 
-
 
3
   This file is part of the Public Domain C Library (PDCLib).
-
 
4
   Permission is granted to use, modify, and / or redistribute at will.
1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
5
*/
-
 
6
 
-
 
7
#include 
2
#include 
Line 8... Line 3...
8
 
3
 
9
int strcoll( const char * s1, const char * s2 )
4
int strcoll(const char* s1, const char* s2)
10
{
-
 
11
    /* FIXME: This should access _PDCLIB_lc_collate. */
5
{
12
    return strcmp( s1, s2 );
6
    return strcmp(s1, s2);