| 167 | } |
| 168 | |
| 169 | static size_t parse_options_count(const struct option *opt) |
| 170 | { |
| 171 | size_t n = 0; |
| 172 | |
| 173 | for (; opt && opt->type != OPTION_END; opt++) |
| 174 | n++; |
| 175 | return n; |
| 176 | } |
| 177 | |
| 178 | struct option *parse_options_dup(const struct option *o) |
| 179 | { |
no outgoing calls
no test coverage detected