]> git.proxmox.com Git - libgit2.git/blob - src/tag.h
Change the library include file
[libgit2.git] / src / tag.h
1 #ifndef INCLUDE_tag_h__
2 #define INCLUDE_tag_h__
3
4 #include "git2/tag.h"
5 #include "repository.h"
6
7 struct git_tag {
8 git_object object;
9
10 git_object *target;
11 git_otype type;
12 char *tag_name;
13 git_person *tagger;
14 char *message;
15 };
16
17 void git_tag__free(git_tag *tag);
18 int git_tag__parse(git_tag *tag);
19 int git_tag__writeback(git_tag *tag, git_odb_source *src);
20
21 #endif