| 997 | } |
| 998 | |
| 999 | int odb_write_object_stream(struct object_database *odb, |
| 1000 | struct odb_write_stream *stream, size_t len, |
| 1001 | struct object_id *oid) |
| 1002 | { |
| 1003 | return odb_source_write_object_stream(odb->sources, stream, len, oid); |
| 1004 | } |
| 1005 | |
| 1006 | struct object_database *odb_new(struct repository *repo, |
| 1007 | const char *primary_source, |
no test coverage detected