Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: d9b9784f572a71b2f4ea0f8772b0d586ea0f848f authored by Junio C Hamano on 21 August 2009, 19:02:25 UTC
GIT 1.6.4.1
Tip revision: d9b9784
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