https://github.com/git/git
Raw File
Tip revision: 438d2991eaa17549df67929cd4558d65840c37d7 authored by Junio C Hamano on 17 December 2008, 06:13:36 UTC
GIT 1.5.6.6
Tip revision: 438d299
decorate.h
#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
back to top