ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/header.c
(Generate patch)

Comparing ray/src/common/header.c (file contents):
Revision 2.8 by greg, Sat Jul 27 07:21:38 1996 UTC vs.
Revision 2.9 by gregl, Fri Oct 31 11:40:52 1997 UTC

# 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   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines