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

17 lines
196 B
C
Raw Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
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
}