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

17 lines
200 B
C
Raw Normal View History

1987-03-31 10:45:53 +00:00
/* $Header$ */
1987-01-27 15:57:55 +00:00
int
1989-02-22 16:16:11 +00:00
strncmp(s, t, n)
register char *s, *t;
register int n;
1987-01-27 15:57:55 +00:00
{
1989-02-22 16:16:11 +00:00
while (n-- > 0) {
if (*s == *t++) {
if (*s++ == '\0')
return 0;
}
else
return *s - *--t;
1987-01-27 15:57:55 +00:00
}
1989-02-22 16:16:11 +00:00
return 0;
1987-01-27 15:57:55 +00:00
}