1#ifndef TAG_H
2#define TAG_H
34
#include "object.h"
56
extern const char *tag_type;
78
struct tag {
9struct object object;
10struct object *tagged;
11char *tag;
12char *signature; /* not actually implemented */
13};
1415
extern struct tag *lookup_tag(unsigned char *sha1);
16extern int parse_tag(struct tag *item);
1718
#endif /* TAG_H */