| 55 | } |
| 56 | |
| 57 | struct opt_table *opt_find_long(const char *arg, const char **optarg) |
| 58 | { |
| 59 | unsigned len; |
| 60 | const char *o; |
| 61 | |
| 62 | return opt_find_long_extra(arg, optarg ? optarg : &o, &len, &o); |
| 63 | } |
| 64 | |
| 65 | static struct opt_table *opt_find_short_extra(char arg, const char **o) |
| 66 | { |
no test coverage detected