Staging
v0.7.0
Revision e94a45de42cea90f6fbd313cfabb5dd10d49e03c authored by James Bowes on 04 February 2008, 13:13:07 UTC, committed by Junio C Hamano on 11 February 2008, 20:51:55 UTC
Signed-off-by: James Bowes <jbowes@dangerouslyinc.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9c21743
Raw File
blob.h
#ifndef BLOB_H
#define BLOB_H

#include "object.h"

extern const char *blob_type;

struct blob {
	struct object object;
};

struct blob *lookup_blob(const unsigned char *sha1);

int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size);

int parse_blob(struct blob *item);

#endif /* BLOB_H */
back to top