Revision 9a8e485430492a1377885071c94983c2da547174 authored by Junio C Hamano on 28 December 2011, 20:03:19 UTC, committed by Junio C Hamano on 28 December 2011, 20:03:19 UTC
* jv/maint-config-set:
  Fix an incorrect reference to --set-all.
2 parent s 0d57085 + 67e223e
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