Staging
v0.5.1
Revision 0bc85abb7aa9b24b093253018801a0fb43d01122 authored by Junio C Hamano on 09 April 2014, 19:04:34 UTC, committed by Junio C Hamano on 09 April 2014, 19:04:34 UTC
The second maintenance release for Git 1.9; contains all the fixes
that are scheduled to appear in Git 2.0.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3c9e56b
Raw File
decorate.h
#ifndef DECORATE_H
#define DECORATE_H

struct object_decoration {
	const struct object *base;
	void *decoration;
};

struct decoration {
	const char *name;
	unsigned int size, nr;
	struct object_decoration *hash;
};

extern void *add_decoration(struct decoration *n, const struct object *obj, void *decoration);
extern void *lookup_decoration(struct decoration *n, const struct object *obj);

#endif
back to top