| 87 | } |
| 88 | |
| 89 | static struct account *search_account(struct account **accts, const char *acctname) |
| 90 | { |
| 91 | for (size_t i = 0; i < tal_count(accts); i++) { |
| 92 | if (streq(accts[i]->name, acctname)) |
| 93 | return accts[i]; |
| 94 | } |
| 95 | |
| 96 | return NULL; |
| 97 | } |
| 98 | |
| 99 | static void fillin_apy_acct_details(const struct bkpr *bkpr, |
| 100 | struct command *cmd, |
no outgoing calls
no test coverage detected