| 9 | #include <plugins/funder_policy.h> |
| 10 | |
| 11 | const char *funder_opt_name(enum funder_opt opt) |
| 12 | { |
| 13 | switch (opt) { |
| 14 | case MATCH: |
| 15 | return "match"; |
| 16 | case AVAILABLE: |
| 17 | return "available"; |
| 18 | case FIXED: |
| 19 | return "fixed"; |
| 20 | } |
| 21 | abort(); |
| 22 | } |
| 23 | |
| 24 | char *funding_option(const char *arg, enum funder_opt *opt) |
| 25 | { |
no test coverage detected