| 613 | } |
| 614 | |
| 615 | static int token_matches_item(const char *tok, struct arg_item *item, size_t tok_len) |
| 616 | { |
| 617 | if (!strncasecmp(tok, item->conf.name, tok_len)) |
| 618 | return 1; |
| 619 | return item->conf.key ? !strncasecmp(tok, item->conf.key, tok_len) : 0; |
| 620 | } |
| 621 | |
| 622 | /* |
| 623 | * If the given line is of the form |
no outgoing calls
no test coverage detected