tag.hon commit Fix up d_type handling - we need to include <dirent.h> before (4b18242)
   1#ifndef TAG_H
   2#define TAG_H
   3
   4#include "object.h"
   5
   6extern const char *tag_type;
   7
   8struct tag {
   9        struct object object;
  10        struct object *tagged;
  11        char *tag;
  12        char *signature; /* not actually implemented */
  13};
  14
  15extern struct tag *lookup_tag(unsigned char *sha1);
  16extern int parse_tag(struct tag *item);
  17
  18#endif /* TAG_H */