mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
24 lines
290 B
C
24 lines
290 B
C
/*
|
|
*
|
|
* (c) 2004,2005 Laurent Vivier <Laurent@lvivier.info>
|
|
*
|
|
*/
|
|
|
|
#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;
|
|
}
|