blob: e7328044ff84a4acaaa7f5f4bc5f85375dc7a07a [file] [log] [blame]
Linus Torvaldsa59b2762007-04-16 16:03:15 -07001#ifndef DECORATE_H
2#define DECORATE_H
3
4struct object_decoration {
Jeff King54988bd2008-08-20 13:55:33 -04005 const struct object *base;
Linus Torvaldsa59b2762007-04-16 16:03:15 -07006 void *decoration;
7};
8
9struct decoration {
10 const char *name;
11 unsigned int size, nr;
12 struct object_decoration *hash;
13};
14
Jeff King54988bd2008-08-20 13:55:33 -040015extern void *add_decoration(struct decoration *n, const struct object *obj, void *decoration);
16extern void *lookup_decoration(struct decoration *n, const struct object *obj);
Linus Torvaldsa59b2762007-04-16 16:03:15 -070017
18#endif