https://github.com/git/git
Raw File
Tip revision: 3d5ae435275e60be3ebd7302c1d2cf8ed6f0b8ad authored by Junio C Hamano on 20 May 2011, 03:30:44 UTC
Git 1.7.5.2
Tip revision: 3d5ae43
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