Revision 5c5dc2fb51ad43100881d563a9d07ac1b70a5607 authored by Linus Torvalds on 08 July 2005, 22:59:29 UTC, committed by Linus Torvalds on 08 July 2005, 22:59:29 UTC
Sure, "install" will default to installing it executable anyway, but
this is the right thing to do.
1 parent ba375ac
Raw File
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