| 292 | } |
| 293 | |
| 294 | static void skip_spaces(const char **pp) |
| 295 | { |
| 296 | const char *p; |
| 297 | p = *pp; |
| 298 | for(;;) { |
| 299 | if (isspace(*p)) { |
| 300 | p++; |
| 301 | } else if (p[0] == '/' && p[1] == '/') { |
| 302 | p += 2; |
| 303 | while (*p != '\0' && *p != '\n') |
| 304 | p++; |
| 305 | } else if (p[0] == '/' && p[1] == '*') { |
| 306 | p += 2; |
| 307 | while (*p != '\0' && (p[0] != '*' || p[1] != '/')) |
| 308 | p++; |
| 309 | if (*p != '\0') |
| 310 | p += 2; |
| 311 | } else { |
| 312 | break; |
| 313 | } |
| 314 | } |
| 315 | *pp = p; |
| 316 | } |
| 317 | |
| 318 | static inline BOOL is_ident_first(int c) |
| 319 | { |
no outgoing calls
no test coverage detected