Staging
v0.5.1
https://github.com/git/git
Revision ffb293b63d13b3b06b454a5f9f0ff6802ef15f0d authored by Junio C Hamano on 12 July 2007, 19:01:47 UTC, committed by Junio C Hamano on 12 July 2007, 19:01:47 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ec0603e
Raw File
Tip revision: ffb293b63d13b3b06b454a5f9f0ff6802ef15f0d authored by Junio C Hamano on 12 July 2007, 19:01:47 UTC
GIT 1.5.2.4
Tip revision: ffb293b
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