]> git.ipfire.org Git - thirdparty/git.git/blame - tag.h
[PATCH] Add tag header/parser to library
[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;
12 char *signature; /* not actually implemented */
13};
14
15#endif /* TAG_H */