From 6eb8ae00d4bceaf660a07d8bc5ab8d6ddccbe1af Mon Sep 17 00:00:00 2001 From: Daniel Barkalow Date: Mon, 18 Apr 2005 11:39:48 -0700 Subject: [PATCH] Header files for object parsing This adds the structs and function declarations for parsing git objects. Signed-Off-By: Daniel Barkalow Signed-off-by: Linus Torvalds --- blob.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 blob.h (limited to 'blob.h') 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 */ -- cgit v1.2.3