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