11 lines
127 B
C
11 lines
127 B
C
/* $Id$ */
|
|
int
|
|
strcmp(s, t)
|
|
register char *s, *t;
|
|
{
|
|
while (*s == *t++)
|
|
if (*s++ == '\0')
|
|
return 0;
|
|
return *s - *--t;
|
|
}
|