MCPcopy Create free account
hub / github.com/ElementsProject/lightning / first_name

Function first_name

lightningd/options.c:1437–1441  ·  view source on GitHub ↗

FIXME: This is a hack! Expose somehow in ccan/opt.*/ Returns string after first '-'. */

Source from the content-addressed store, hash-verified

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

Callers 2

next_nameFunction · 0.70
json_listconfigsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected