Revision 67b175bb11d66329f9257368a6e75dfd26d0670f authored by Junio C Hamano on 24 January 2009, 03:02:58 UTC, committed by Junio C Hamano on 24 January 2009, 03:02:58 UTC
* pj/maint-ldflags:
  configure clobbers LDFLAGS
2 parent s e5bde19 + 50a4b35
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