| 5 | #include "packfile.h" |
| 6 | |
| 7 | struct odb_source *odb_source_new(struct object_database *odb, |
| 8 | const char *path, |
| 9 | bool local) |
| 10 | { |
| 11 | return &odb_source_files_new(odb, path, local)->base; |
| 12 | } |
| 13 | |
| 14 | void odb_source_init(struct odb_source *source, |
| 15 | struct object_database *odb, |
no test coverage detected