https://github.com/git/git
Raw File
Tip revision: b13ef4916ac5a25cc5897f85ba0b4c5953cff609 authored by Junio C Hamano on 15 August 2007, 22:01:20 UTC
GIT 1.5.2.5
Tip revision: b13ef49
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