Staging
v0.5.1
https://github.com/git/git
Revision e6363a4992637267ef212d7c709ede17d4122e0d authored by Junio C Hamano on 01 March 2013, 21:15:29 UTC, committed by Junio C Hamano on 01 March 2013, 21:15:29 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8b1bd02
Raw File
Tip revision: e6363a4992637267ef212d7c709ede17d4122e0d authored by Junio C Hamano on 01 March 2013, 21:15:29 UTC
Git 1.8.1.5
Tip revision: e6363a4
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