| 461 | } |
| 462 | |
| 463 | static int has_string(const char *it, const char **array) |
| 464 | { |
| 465 | while (*array) |
| 466 | if (!strcmp(it, *(array++))) |
| 467 | return 1; |
| 468 | return 0; |
| 469 | } |
| 470 | |
| 471 | static int is_alias(struct parse_opt_ctx_t *ctx, |
| 472 | const struct option *one_opt, |