diff options
Diffstat (limited to 'blob.h')
-rw-r--r-- | blob.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/blob.h b/blob.h new file mode 100644 index 0000000000..5cbf6d65ee --- /dev/null +++ b/blob.h @@ -0,0 +1,14 @@ +#ifndef BLOB_H +#define BLOB_H + +#include "object.h" + +extern const char *blob_type; + +struct blob { + struct object object; +}; + +struct blob *lookup_blob(unsigned char *sha1); + +#endif /* BLOB_H */ |