| # | Line 32 | Line 32 | char *fl | |
|---|---|---|
| 32 | s = *av; | |
| 33 | switch (*fl) { | |
| 34 | case 's': /* string */ | |
| 35 | < | while (isspace(*s)) |
| 35 | > | while (*s == ' ') |
| 36 | ++s; | |
| 37 | < | if (*s == '\0') |
| 38 | < | return(i); |
| 39 | < | while (*s) |
| 40 | < | if (!isprint(*s++)) |
| 37 | > | do |
| 38 | > | if (!isprint(*s)) |
| 39 | return(i); | |
| 40 | + | while (*++s); |
| 41 | break; | |
| 42 | case 'i': /* integer */ | |
| 43 | if (!isintd(s, " \t\r\n")) | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |