Revision e634aec752642dcf86c3fc82025e43381d6768c2 authored by Junio C Hamano on 31 October 2005, 02:06:39 UTC, committed by Junio C Hamano on 31 October 2005, 02:06:39 UTC
... to contain the RPM workaround.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s a1c7a69 + 80e0c0a
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