EMILE/libunix/strncmp.c
2005-11-12 19:13:52 +00:00

18 lines
221 B
C

#include <string.h>
int strncmp(const char *__s1, const char *__s2, size_t __n)
{
int tmp;
while (__n--)
{
tmp = *__s1 - *__s2;
if (tmp)
return tmp;
if (!*__s1)
break;
__s1++; __s2++;
}
return 0;
}