1#ifndef BLOB_H2#define BLOB_H34#include "object.h"56extern const char *blob_type;78struct blob {9struct object object;10};1112struct blob *lookup_blob(unsigned char *sha1);1314int parse_blob(struct blob *item);1516#endif /* BLOB_H */