Revision 8afd3178437eef29a08ba21aceb47a94177409d5 authored by Junio C Hamano on 02 April 2009, 19:02:18 UTC, committed by Junio C Hamano on 02 April 2009, 19:02:18 UTC
* bc/maint-1.6.1-branch-deleted-was:
  git-branch: display "was sha1" on branch deletion rather than just "sha1"

Conflicts:
	builtin-branch.c
2 parent s b5a1878 + 76aac71
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