| 41 | }; |
| 42 | |
| 43 | static const struct ref_storage_be *find_ref_storage_backend( |
| 44 | enum ref_storage_format ref_storage_format) |
| 45 | { |
| 46 | if (ref_storage_format < ARRAY_SIZE(refs_backends)) |
| 47 | return refs_backends[ref_storage_format]; |
| 48 | return NULL; |
| 49 | } |
| 50 | |
| 51 | enum ref_storage_format ref_storage_format_by_name(const char *name) |
| 52 | { |
no outgoing calls
no test coverage detected