FIXME: This is a hack! Expose somehow in ccan/opt.*/ Returns string after first '-'. */
| 226 | /* FIXME: This is a hack! Expose somehow in ccan/opt.*/ |
| 227 | /* Returns string after first '-'. */ |
| 228 | static const char *first_name(const char *names, unsigned *len) |
| 229 | { |
| 230 | *len = strcspn(names + 1, "|= "); |
| 231 | return names + 1; |
| 232 | } |
| 233 | |
| 234 | static const char *next_name(const char *names, unsigned *len) |
| 235 | { |
no outgoing calls
no test coverage detected