| # | Line 924 | Line 924 | next_token(char **spp) | |
|---|---|---|
| 924 | } | |
| 925 | ||
| 926 | /* Advance pointer past matching token (or any token if c==0) */ | |
| 927 | < | #define eat_token(spp,c) (next_token(spp)==(c) ^ !(c) ? *(*(spp))++ : 0) |
| 927 | > | #define eat_token(spp,c) ((next_token(spp)==(c)) ^ !(c) ? *(*(spp))++ : 0) |
| 928 | ||
| 929 | /* Count words from this point in string to '}' */ | |
| 930 | static int | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |