Revision f0583867e746985e9d62f57d5ba6ce27b2603447 authored by MichaƂ Kiedrowicz on 18 April 2009, 21:03:57 UTC, committed by Junio C Hamano on 20 April 2009, 20:47:02 UTC
I realized that this test does check if git-apply succeeds, but doesn't
tell if it applies patches correctly. So I added test_cmp to check it.

I also added a test which checks swapping three files.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e8141fc
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