https://github.com/git/git
Raw File
Tip revision: 527270689c364bea9b0630df9bae5e09c2071c1e authored by Tim Stoakes on 10 February 2008, 04:19:08 UTC
Fix typo in 'blame' documentation.
Tip revision: 5272706
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