forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
249 B
C
17 lines
249 B
C
#include <string.h>
|
|
|
|
int strcmp(const char* string1, const char* string2)
|
|
{
|
|
while (1)
|
|
{
|
|
if (*string1<*string2)
|
|
return -1;
|
|
if (*string1>*string2)
|
|
return 1;
|
|
if (*string1=='\0')
|
|
return 0;
|
|
string1++;
|
|
string2++;
|
|
}
|
|
}
|