| 555 | enum odb_write_object_flags flags); |
| 556 | |
| 557 | static inline int odb_write_object(struct object_database *odb, |
| 558 | const void *buf, unsigned long len, |
| 559 | enum object_type type, |
| 560 | struct object_id *oid) |
| 561 | { |
| 562 | return odb_write_object_ext(odb, buf, len, type, oid, NULL, 0); |
| 563 | } |
| 564 | |
| 565 | struct odb_write_stream; |
| 566 |
no test coverage detected