Vhex-kernel/src/kernel/util/string/strcmp.c

14 lines
224 B
C
Raw Normal View History

#include <kernel/util/string.h>
int strcmp(const char *s1, const char *s2)
{
if (s1 == NULL || s2 == NULL)
return (0);
while (*s1 != '\0' && *s2 != '\0' && *s1 == *s2)
{
s1 += 1;
s2 += 1;
}
return (*s1 - *s2);
}