Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 6c7f58d6f691c1091b90b0891e94c91e20fd6054 authored by Junio C Hamano on 04 June 2009, 05:42:15 UTC
GIT 1.6.3.2
Tip revision: 6c7f58d
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