Revision 1cb7f22e5c344026524300941f66573f313ff093 authored by c.shoemaker@cox.net on 29 October 2005, 04:16:01 UTC, committed by Junio C Hamano on 29 October 2005, 05:21:32 UTC
Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 0363ecf
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