Hash :
3315782c
Author :
Date :
2010-08-08T14:12:17
#ifndef INCLUDE_tag_h__
#define INCLUDE_tag_h__
#include "git/tag.h"
#include "repository.h"
struct git_tag {
git_repository_object object;
git_repository_object *target;
git_otype type;
char *tag_name;
git_person *tagger;
char *message;
};
void git_tag__free(git_tag *tag);
int git_tag__parse(git_tag *tag);
#endif