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

Comparing ray/src/cal/neat.c (file contents):
Revision 1.1 by greg, Sat Feb 22 02:07:20 2003 UTC vs.
Revision 1.3 by schorsch, Sun Jul 27 22:12:01 2003 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7   *      10/24/86
8   */
9  
10 + #include  <stdlib.h>
11   #include  <stdio.h>
12  
13   #include  <ctype.h>
# Line 32 | Line 33 | char  *argv[];
33          for (cp = format; isdigit(*cp); cp++)
34                  left = left*10 + *cp - '0';
35          right = 0;
36 <        if (anchor = *cp)
36 >        if ( (anchor = *cp) )
37                  for (cp++; isdigit(*cp); cp++)
38                          right = right*10 + *cp - '0';
39          if (*cp)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines