| 73 | } |
| 74 | |
| 75 | struct opt_table *opt_find_short(char arg) |
| 76 | { |
| 77 | const char *o; |
| 78 | return opt_find_short_extra(arg, &o); |
| 79 | } |
| 80 | |
| 81 | /* Returns 1 if argument consumed, 0 if all done, -1 on error. */ |
| 82 | int parse_one(int *argc, char *argv[], enum opt_type is_early, unsigned *offset, |
no test coverage detected