Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 6fe5b7ff6cafcc94415deba2f3d611770d8e6b1e authored by Junio C Hamano on 02 October 2006, 07:43:52 UTC
git-push: .git/remotes/ file does not require SP after colon
Tip revision: 6fe5b7f
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