]> git.ipfire.org Git - thirdparty/git.git/blobdiff - blob.h
[PATCH] Header files for object parsing
[thirdparty/git.git] / blob.h
diff --git a/blob.h b/blob.h
new file mode 100644 (file)
index 0000000..5cbf6d6
--- /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 */