Subversion Repositories Kolibri OS

Rev

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

  1. #include <string.h>
  2.  
  3. int strcoll(const char* string1,const char* string2)
  4. {
  5.         return strcmp(string1,string2);
  6. }
  7.