Staging
v0.5.1
Revision ffb293b63d13b3b06b454a5f9f0ff6802ef15f0d authored by Junio C Hamano on 12 July 2007, 19:01:47 UTC, committed by Junio C Hamano on 12 July 2007, 19:01:47 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ec0603e
Raw File
decorate.h
#ifndef DECORATE_H
#define DECORATE_H

struct object_decoration {
	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, struct object *obj, void *decoration);
extern void *lookup_decoration(struct decoration *n, struct object *obj);

#endif
back to top