Revision 4cdf78bf964912698ab33579977f21a3e0b832ed authored by Junio C Hamano on 27 December 2005, 22:49:22 UTC, committed by Junio C Hamano on 28 December 2005, 01:57:27 UTC
Just in case 8 hexadecimal digits are not enough.  We could use
shorter default if we wanted to.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 635d413
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