| 316 | } |
| 317 | |
| 318 | static inline BOOL is_ident_first(int c) |
| 319 | { |
| 320 | return (c >= 'a' && c <= 'z') || |
| 321 | (c >= 'A' && c <= 'Z') || |
| 322 | c == '_' || c == '$'; |
| 323 | } |
| 324 | |
| 325 | static int parse_ident(char *buf, int buf_size, const char **pp) |
| 326 | { |
no outgoing calls
no test coverage detected