[PATCH] Fixup t/t5300 unit tests broken by 5f3de58ff85c49620ae2a1722d8d4d37c881a054
[git/dscho.git] / tag.h
blob3e8c32d738ddad2538257b84830424a77b9aae7a
1 #ifndef TAG_H
2 #define TAG_H
4 #include "object.h"
6 extern const char *tag_type;
8 struct tag {
9 struct object object;
10 struct object *tagged;
11 char *tag;
12 char *signature; /* not actually implemented */
15 extern struct tag *lookup_tag(const unsigned char *sha1);
16 extern int parse_tag_buffer(struct tag *item, void *data, unsigned long size);
17 extern int parse_tag(struct tag *item);
19 #endif /* TAG_H */