https://github.com/git/git
Raw File
Tip revision: 6c41b80153a2e4ee347d0e968ee8d0d9abfc8862 authored by Junio C Hamano on 02 April 2008, 17:42:14 UTC
GIT 1.5.5-rc3
Tip revision: 6c41b80
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