https://github.com/git/git
Raw File
Tip revision: bf5aeb150681ed743d317702eaf123c34b05c311 authored by Junio C Hamano on 27 January 2008, 02:39:41 UTC
GIT 1.5.4-rc5
Tip revision: bf5aeb1
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