Last active 4 months ago
0
0
1
| 1 | /* check for step size |
| 2 | */ |
| 3 | if (ch == '/') { |
| 4 | /* eat the slash |
| 5 | */ |
| 6 | ch = get_char(file); |
| 7 | if (ch == EOF) |
| 8 | return EOF; |
| 9 | |
| 10 | /* get the step size -- note: we don't pass the |