Override a tal string; frees the old one. */
| 18 | |
| 19 | /* Override a tal string; frees the old one. */ |
| 20 | char *opt_set_talstr(const char *arg, char **p) |
| 21 | { |
| 22 | tal_free(*p); |
| 23 | return opt_set_charp(tal_strdup(options_ctx, arg), p); |
| 24 | } |
| 25 | |
| 26 | static char *opt_set_abspath(const char *arg, char **p) |
| 27 | { |
nothing calls this directly
no test coverage detected