commit.c: migrate the commit buffer to the parsed object store
[git.git] / tag.h
blobefd4c7da67c1c185c45f4a54b0fe3dbcfcb4ef55
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 timestamp_t date;
14 extern struct tag *lookup_tag(struct repository *r, const struct object_id *oid);
15 extern int parse_tag_buffer(struct repository *r, struct tag *item, const void *data, unsigned long size);
16 extern int parse_tag(struct tag *item);
17 extern void release_tag_memory(struct tag *t);
18 #define deref_tag(r, o, w, l) deref_tag_##r(o, w, l)
19 extern struct object *deref_tag_the_repository(struct object *, const char *, int);
20 extern struct object *deref_tag_noverify(struct object *);
21 extern int gpg_verify_tag(const struct object_id *oid,
22 const char *name_to_report, unsigned flags);
24 #endif /* TAG_H */