https://github.com/git/git
Raw File
Tip revision: 779e3a8f8b77f4316bb61a8d67b49462b3893632 authored by Junio C Hamano on 22 December 2008, 03:20:21 UTC
GIT 1.6.1-rc4
Tip revision: 779e3a8
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