Staging
v0.5.1
https://github.com/git/git
Revision 4fec83045bdc53ed9d3ff71ed099e3e6992b5c56 authored by Junio C Hamano on 19 April 2011, 18:45:38 UTC, committed by Junio C Hamano on 19 April 2011, 18:45:38 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ccc2fcf
Raw File
Tip revision: 4fec83045bdc53ed9d3ff71ed099e3e6992b5c56 authored by Junio C Hamano on 19 April 2011, 18:45:38 UTC
Git 1.7.4.5
Tip revision: 4fec830
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