2022-12-21 08:29:33 +00:00
|
|
|
int strcmp(const char *s1, const char *s2)
|
|
|
|
|
{
|
2026-02-19 18:54:48 +00:00
|
|
|
int i;
|
|
|
|
|
for (i = 0; s1[i] == s2[i]; i++)
|
|
|
|
|
if (s1[i] == '\0')
|
|
|
|
|
return 0;
|
2022-12-21 08:29:33 +00:00
|
|
|
|
2026-02-19 18:54:48 +00:00
|
|
|
return s1[i] - s2[i];
|
2022-12-21 08:29:33 +00:00
|
|
|
}
|
|
|
|
|
|
2023-02-25 17:58:23 +00:00
|
|
|
int strncmp(const char *s1, const char *s2, unsigned long n)
|
2022-12-21 08:29:33 +00:00
|
|
|
{
|
2026-02-19 18:54:48 +00:00
|
|
|
for (; n > 0; s1++, s2++, --n)
|
|
|
|
|
if (*s1 != *s2)
|
|
|
|
|
return ((*(unsigned char *)s1 < *(unsigned char *)s2)
|
|
|
|
|
? -1
|
|
|
|
|
: 1);
|
|
|
|
|
else if (*s1 == '\0')
|
|
|
|
|
return 0;
|
|
|
|
|
return 0;
|
2022-12-21 08:29:33 +00:00
|
|
|
}
|