Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: a9572072f0ab0ac97e64b0dc01254a3ad95befe1 authored by Junio C Hamano on 12 December 2005, 00:49:45 UTC
GIT 0.99.9m aka 1.0rc5
Tip revision: a957207
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