Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  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.
  5. */
  6.  
  7. #include <string.h>
  8.  
  9. int strcoll( const char * s1, const char * s2 )
  10. {
  11.     /* FIXME: This should access _PDCLIB_lc_collate. */
  12.     return strcmp( s1, s2 );
  13. }
  14.