| 32 | } |
| 33 | |
| 34 | static const char *first_opt(unsigned *i, unsigned *len) |
| 35 | { |
| 36 | for (*i = 0; *i < opt_count; (*i)++) { |
| 37 | if (opt_table[*i].type == OPT_SUBTABLE) |
| 38 | continue; |
| 39 | return first_name(opt_table[*i].names, len); |
| 40 | } |
| 41 | return NULL; |
| 42 | } |
| 43 | |
| 44 | static const char *next_opt(const char *p, unsigned *i, unsigned *len) |
| 45 | { |
no test coverage detected