Revision 9656153b87d47b34986f2d77eef9199c24cbf9f6 authored by Junio C Hamano on 29 August 2007, 20:27:10 UTC, committed by Junio C Hamano on 29 August 2007, 20:27:10 UTC
* 'master' of git://git.kernel.org/pub/scm/gitk/gitk:
  gitk: Fix bug causing undefined variable error when cherry-picking
2 parent s 7d37b5b + 719c2b9
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