mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 18:30:20 +00:00
9bd9755dbb
Signed-off-by: Laurent Vivier <Laurent@Vivier.EU>
19 lines
224 B
C
19 lines
224 B
C
/*
|
|
*
|
|
* (c) 2004,2005 Laurent Vivier <Laurent@Vivier.EU>
|
|
*
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
int strcmp(const char *__s1, const char *__s2)
|
|
{
|
|
while (*__s1 && *__s1 == *__s2)
|
|
{
|
|
__s1++;
|
|
__s2++;
|
|
}
|
|
|
|
return (*__s1 - *__s2);;
|
|
}
|