FIXME: This is a hack! Expose somehow in ccan/opt.*/ Returns string after first '-'. */
| 1435 | /* FIXME: This is a hack! Expose somehow in ccan/opt.*/ |
| 1436 | /* Returns string after first '-'. */ |
| 1437 | static const char *first_name(const char *names, unsigned *len) |
| 1438 | { |
| 1439 | *len = strcspn(names + 1, "|= "); |
| 1440 | return names + 1; |
| 1441 | } |
| 1442 | |
| 1443 | static const char *next_name(const char *names, unsigned *len) |
| 1444 | { |
no outgoing calls
no test coverage detected