Staging
v0.5.1
https://github.com/git/git
Revision 0a246571d47642dd7b6b796e601b820ca9f0c8c4 authored by Junio C Hamano on 15 October 2006, 01:25:28 UTC, committed by Junio C Hamano on 15 October 2006, 01:25:28 UTC
* jc/http:
  Add WEBDAV timeout to http-fetch.
2 parent s ced78b3 + adc446f
Raw File
Tip revision: 0a246571d47642dd7b6b796e601b820ca9f0c8c4 authored by Junio C Hamano on 15 October 2006, 01:25:28 UTC
Merge branch 'jc/http'
Tip revision: 0a24657
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