ack/lang/cem/libcc/gen/memcmp.c

17 lines
180 B
C
Raw Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1987-01-27 15:57:55 +00:00
int
memcmp(s1, s2, n)
register char *s1, *s2;
{
/* Compare 2 strings. */
1987-01-28 17:05:02 +00:00
while (n-- > 0) {
1987-01-27 15:57:55 +00:00
if (*s1 != *s2) {
return(*s1 - *s2);
}
s1++;
s2++;
}
return 0;
}