]> git.ipfire.org Git - thirdparty/git.git/blame - blob.h
[PATCH] diff-tree -p implies diff-tree -p -r
[thirdparty/git.git] / blob.h
CommitLineData
6eb8ae00
DB
1#ifndef BLOB_H
2#define BLOB_H
3
4#include "object.h"
5
6extern const char *blob_type;
7
8struct blob {
9 struct object object;
10};
11
12struct blob *lookup_blob(unsigned char *sha1);
13
14#endif /* BLOB_H */