mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
6eb8ae00d4
This adds the structs and function declarations for parsing git objects. Signed-Off-By: Daniel Barkalow <barkalow@iabervon.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
15 lines
192 B
C
15 lines
192 B
C
#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 */
|