4 const char *blob_type
= "blob";
6 struct blob
*lookup_blob(const struct object_id
*oid
)
8 struct object
*obj
= lookup_object(oid
->hash
);
10 return create_object(oid
->hash
, alloc_blob_node());
11 return object_as_type(obj
, OBJ_BLOB
, 0);
14 int parse_blob_buffer(struct blob
*item
, void *buffer
, unsigned long size
)
16 item
->object
.parsed
= 1;