1
0
mirror of https://github.com/git/git.git synced 2024-09-25 04:01:58 +02:00
git/decorate.h

19 lines
382 B
C
Raw Normal View History

#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