| 784 | } |
| 785 | |
| 786 | void parse_options_start(struct parse_opt_ctx_t *ctx, |
| 787 | int argc, const char **argv, const char *prefix, |
| 788 | const struct option *options, |
| 789 | enum parse_opt_flags flags) |
| 790 | { |
| 791 | memset(ctx, 0, sizeof(*ctx)); |
| 792 | parse_options_start_1(ctx, argc, argv, prefix, options, flags); |
| 793 | } |
| 794 | |
| 795 | static void show_negated_gitcomp(const struct option *opts, int show_all, |
| 796 | int nr_noopts) |
no test coverage detected