| 237 | } |
| 238 | |
| 239 | static int parse_one_token(const char **arg, const char *token) |
| 240 | { |
| 241 | const char *rest; |
| 242 | if (skip_prefix(*arg, token, &rest) && (!*rest || *rest == ',')) { |
| 243 | *arg = rest; |
| 244 | return 1; |
| 245 | } |
| 246 | return 0; |
| 247 | } |
| 248 | |
| 249 | static int parse_ws_error_highlight(const char *arg) |
| 250 | { |
no outgoing calls
no test coverage detected