https://github.com/git/git
Raw File
Tip revision: 527270689c364bea9b0630df9bae5e09c2071c1e authored by Tim Stoakes on 10 February 2008, 04:19:08 UTC
Fix typo in 'blame' documentation.
Tip revision: 5272706
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