Staging
v0.5.1
https://github.com/git/git
Revision 235d521da60e4699e5bd59ac658b5b48bd76ddca authored by Junio C Hamano on 02 November 2005, 05:58:53 UTC, committed by Junio C Hamano on 02 November 2005, 05:58:53 UTC
This contains the changes made on the master branch since 0.99.9a.

The workaround for building RPMs has not changed since 0.99.9a,
mainly because I haven't heard back if it was good enough for
kernel.org consumption, or otherwise what changes are needed.

Signed-off-by: Junio C Hamano <junkio@cox.net>
2 parent s d92ddb5 + 8e6ae4a
Raw File
Tip revision: 235d521da60e4699e5bd59ac658b5b48bd76ddca authored by Junio C Hamano on 02 November 2005, 05:58:53 UTC
GIT 0.99.9b
Tip revision: 235d521
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