swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: f371d3ea3ca7933df787230f2eb9b67901bde9d3 authored by Junio C Hamano on 08 December 2008, 01:34:14 UTC
Point "stale" 1.6.0.5 documentation from the main git documentation page
Tip revision: f371d3e
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