1#ifndef BLOB_H
2#define BLOB_H
34
#include "object.h"
56
extern const char *blob_type;
78
struct blob {
9struct object object;
10};
1112
struct blob *lookup_blob(const unsigned char *sha1);
1314
int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size);
1516
int parse_blob(struct blob *item);
1718
#endif /* BLOB_H */