mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-19 05:12:45 +03:00
5 lines
94 B
C
5 lines
94 B
C
|
int strcoll(const char* string1,const char* string2)
|
||
|
{
|
||
|
return strcmp(string1,string2);
|
||
|
}
|