[PATCH] Add tag header/parser to library
[git/jrn.git] / tag.h
blob7ae7864d8a8477bfd22d4e29d78119d345f2bbb9
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 #endif /* TAG_H */