| 5 | const char *blob_type = "blob"; |
| 6 | |
| 7 | struct blob *lookup_blob(struct repository *r, const struct object_id *oid) |
| 8 | { |
| 9 | struct object *obj = lookup_object(r, oid); |
| 10 | if (!obj) |
| 11 | return create_object(r, oid, alloc_blob_node(r)); |
| 12 | return object_as_type(obj, OBJ_BLOB, 0); |
| 13 | } |
| 14 | |
| 15 | void parse_blob_buffer(struct blob *item) |
| 16 | { |
no test coverage detected