2005-04-28 16:46:33 +02:00
|
|
|
#ifndef TAG_H
|
|
|
|
#define TAG_H
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
|
|
|
|
extern const char *tag_type;
|
|
|
|
|
|
|
|
struct tag {
|
|
|
|
struct object object;
|
|
|
|
struct object *tagged;
|
|
|
|
char *tag;
|
|
|
|
char *signature; /* not actually implemented */
|
|
|
|
};
|
|
|
|
|
2005-04-28 16:50:39 +02:00
|
|
|
extern struct tag *lookup_tag(unsigned char *sha1);
|
2005-05-06 19:48:34 +02:00
|
|
|
extern int parse_tag_buffer(struct tag *item, void *data, unsigned long size);
|
2005-04-28 16:50:39 +02:00
|
|
|
extern int parse_tag(struct tag *item);
|
|
|
|
|
2005-04-28 16:46:33 +02:00
|
|
|
#endif /* TAG_H */
|