mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-20 05:42:34 +03:00
15 lines
240 B
C
15 lines
240 B
C
|
int strncmp(const char* string1, const char* string2, int count)
|
||
|
{
|
||
|
while(count>0)
|
||
|
{
|
||
|
if (*string1<*string2)
|
||
|
return -1;
|
||
|
if (*string1>*string2)
|
||
|
return 1;
|
||
|
if (*string1=='\0')
|
||
|
return 0;
|
||
|
count--;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|