| # | Line 57 | Line 57 | register char *r, *s; | |
|---|---|---|
| 57 | ||
| 58 | while (*cp) if (*cp++ != *s++) return(0); | |
| 59 | if (r == NULL) return(1); | |
| 60 | < | while (*s) *r++ = *s++; |
| 60 | > | while (*s && !isspace(*s)) *r++ = *s++; |
| 61 | *r = '\0'; | |
| 62 | return(1); | |
| 63 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |