]> git.ipfire.org Git - thirdparty/git.git/blame - tag.h
GIT-VERSION-GEN: support non-standard $GIT_DIR path
[thirdparty/git.git] / tag.h
CommitLineData
2636f614
DB
1#ifndef TAG_H
2#define TAG_H
3
4#include "object.h"
5
6extern const char *tag_type;
7
8struct tag {
9 struct object object;
10 struct object *tagged;
11 char *tag;
e451d06b 12 unsigned long date;
2636f614
DB
13};
14
5d6ccf5c 15extern struct tag *lookup_tag(const unsigned char *sha1);
cf7b1cad 16extern int parse_tag_buffer(struct tag *item, const void *data, unsigned long size);
d5e27688 17extern int parse_tag(struct tag *item);
9534f40b 18extern struct object *deref_tag(struct object *, const char *, int);
90108a24 19extern struct object *deref_tag_noverify(struct object *);
ac58c4c7 20extern size_t parse_signature(const char *buf, unsigned long size);
d5e27688 21
2636f614 22#endif /* TAG_H */