| 332 | } |
| 333 | |
| 334 | static void join_strings(char **base, const char *connector, char *append) |
| 335 | { |
| 336 | if (streq(*base, "")) { |
| 337 | *base = append; |
| 338 | } else { |
| 339 | tal_append_fmt(base, " %s %s", connector, append); |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | static struct command_result *json_add_rune(struct lightningd *ld, |
| 344 | struct json_stream *js, |
no test coverage detected