1#ifndef TAG_H2#define TAG_H34#include "object.h"56extern const char *tag_type;78struct tag {9struct object object;10struct object *tagged;11char *tag;12char *signature; /* not actually implemented */13};1415#endif /* TAG_H */