https://github.com/git/git
Raw File
Tip revision: c572f491e545f3fe76a966e418139fc9755a910f authored by Junio C Hamano on 18 January 2012, 23:51:00 UTC
Git 1.7.8.4
Tip revision: c572f49
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