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