| 986 | } |
| 987 | |
| 988 | int odb_write_object_ext(struct object_database *odb, |
| 989 | const void *buf, unsigned long len, |
| 990 | enum object_type type, |
| 991 | struct object_id *oid, |
| 992 | struct object_id *compat_oid, |
| 993 | enum odb_write_object_flags flags) |
| 994 | { |
| 995 | return odb_source_write_object(odb->sources, buf, len, type, |
| 996 | oid, compat_oid, flags); |
| 997 | } |
| 998 | |
| 999 | int odb_write_object_stream(struct object_database *odb, |
| 1000 | struct odb_write_stream *stream, size_t len, |
no test coverage detected