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

Comparing ray/src/common/fgetval.c (file contents):
Revision 2.1 by greg, Fri Jun 30 16:06:09 1995 UTC vs.
Revision 2.5 by schorsch, Sat Jun 7 12:50:20 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1995 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char       RCSid[] = "$Id$";
3   #endif
6
4   /*
5   * Read white space separated values from stream
6 + *
7 + *  External symbols declared in standard.h
8   */
9  
10 < #include  <stdio.h>
10 > #include "copyright.h"
11  
12 + #include  <stdio.h>
13   #include  <math.h>
14 <
14 > #include  <stdlib.h>
15 > #include  <string.h>
16   #include  <ctype.h>
17  
18 + #include  "standard.h"
19  
18 #ifdef DCL_ATOF
19 extern double   atof();
20 #endif
21 extern int      atoi();
22 extern long     atol();
23 extern char     *strcpy();
24
25
20   int
21   fgetval(fp, ty, vp)                     /* get specified data word */
22   register FILE   *fp;
23   int     ty;
24   char    *vp;
25   {
32        static char     delims[] = " \t\n\r\f#";
26          char    wrd[64];
27          register char   *cp;
28          register int    c;
# Line 55 | Line 48 | char   *vp;
48          *cp = '\0';
49          switch (ty) {                   /* check and convert it */
50          case 'h':                       /* short */
51 <                if (!isintd(wrd, delims))
51 >                if (!isint(wrd))
52                          return(0);
53                  *(short *)vp = c = atoi(wrd);
54                  if (*(short *)vp != c)
55                          return(0);
56                  return(1);
57          case 'i':                       /* integer */
58 <                if (!isintd(wrd, delims))
58 >                if (!isint(wrd))
59                          return(0);
60                  *(int *)vp = atoi(wrd);
61                  return(1);
62          case 'l':                       /* long */
63 <                if (!isintd(wrd, delims))
63 >                if (!isint(wrd))
64                          return(0);
65                  *(long *)vp = atol(wrd);
66                  return(1);
67          case 'f':                       /* float */
68 <                if (!isfltd(wrd, delims))
68 >                if (!isflt(wrd))
69                          return(0);
70                  *(float *)vp = atof(wrd);
71                  return(1);
72          case 'd':                       /* double */
73 <                if (!isfltd(wrd, delims))
73 >                if (!isflt(wrd))
74                          return(0);
75                  *(double *)vp = atof(wrd);
76                  return(1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines