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

11 lines
131 B
C
Raw Normal View History

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