| 232 | } |
| 233 | |
| 234 | static const char *next_name(const char *names, unsigned *len) |
| 235 | { |
| 236 | names += *len; |
| 237 | if (names[0] == ' ' || names[0] == '=' || names[0] == '\0') |
| 238 | return NULL; |
| 239 | return first_name(names + 1, len); |
| 240 | } |
| 241 | |
| 242 | static const char **opt_names_arr(const tal_t *ctx, |
| 243 | const struct opt_table *ot) |
no test coverage detected