Revision 6a7e25d155adb2c8a44173ec80fac7b0385a55a7 authored by Junio C Hamano on 31 January 2017, 21:32:11 UTC, committed by Junio C Hamano on 31 January 2017, 21:32:11 UTC
An update to a topic that is already in 'master'.

* js/mingw-isatty:
  mingw: follow-up to "replace isatty() hack"
2 parent s 63f1bb8 + 1d3f065
Raw File
blob.c
#include "cache.h"
#include "blob.h"

const char *blob_type = "blob";

struct blob *lookup_blob(const unsigned char *sha1)
{
	struct object *obj = lookup_object(sha1);
	if (!obj)
		return create_object(sha1, alloc_blob_node());
	return object_as_type(obj, OBJ_BLOB, 0);
}

int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size)
{
	item->object.parsed = 1;
	return 0;
}
back to top