]> git.ipfire.org Git - thirdparty/git.git/blob - blob.c
is_ntfs_dotgit(): only verify the leading segment
[thirdparty/git.git] / blob.c
1 #include "cache.h"
2 #include "blob.h"
3
4 const char *blob_type = "blob";
5
6 struct blob *lookup_blob(const struct object_id *oid)
7 {
8 struct object *obj = lookup_object(oid->hash);
9 if (!obj)
10 return create_object(oid->hash, alloc_blob_node());
11 return object_as_type(obj, OBJ_BLOB, 0);
12 }
13
14 int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size)
15 {
16 item->object.parsed = 1;
17 return 0;
18 }