Staging
v0.5.1
https://github.com/git/git
Revision 8fc11b5aa98540f7caab87e22e5aae63512893a2 authored by Junio C Hamano on 08 January 2006, 05:32:48 UTC, committed by Junio C Hamano on 08 January 2006, 05:32:48 UTC
2 parent s 92e802c + 6f2eacf
Raw File
Tip revision: 8fc11b5aa98540f7caab87e22e5aae63512893a2 authored by Junio C Hamano on 08 January 2006, 05:32:48 UTC
GIT 1.0.8
Tip revision: 8fc11b5
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