Code

Make "read-tree" know how to do a "1-way merge".
[git.git] / blob.h
1 #ifndef BLOB_H
2 #define BLOB_H
4 #include "object.h"
6 extern const char *blob_type;
8 struct blob {
9         struct object object;
10 };
12 struct blob *lookup_blob(unsigned char *sha1);
14 #endif /* BLOB_H */