Staging
v0.8.1
Revision aba201c6e8d9934157b9ba39b8e6b54c2fa7b6e1 authored by Pascal Obry on 06 April 2008, 16:56:08 UTC, committed by Junio C Hamano on 07 April 2008, 03:03:09 UTC
Signed-off-by: Pascal Obry <pascal@obry.net>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent f2b3e3c
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