aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tag.c b/src/tag.c
index 2ec4986ab..5e2a3620e 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -319,6 +319,18 @@ struct tag *tag_dup(const struct tag *tag)
return ret;
}
+bool tag_has_type(const struct tag *tag, enum tag_type type)
+{
+ assert(tag != NULL);
+ assert(type < TAG_NUM_OF_ITEM_TYPES);
+
+ for (unsigned i = 0; i < tag->numOfItems; i++)
+ if (tag->items[i]->type == type)
+ return true;
+
+ return false;
+}
+
int tag_equal(const struct tag *tag1, const struct tag *tag2)
{
int i;