https://github.com/git/git
Raw File
Tip revision: d9b9784f572a71b2f4ea0f8772b0d586ea0f848f authored by Junio C Hamano on 21 August 2009, 19:02:25 UTC
GIT 1.6.4.1
Tip revision: d9b9784
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