diff options
author | Max Kellermann <max@duempel.org> | 2008-11-03 18:24:00 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-03 18:24:00 +0100 |
commit | 8bb2da063f59e7586c61f88c1fb2d268e6191e5c (patch) | |
tree | c992c72e96fadc9400bc416b765c23f320b1f138 /src/tag.h | |
parent | b9d456a041a3cc11e8bb7e6a9500e2c5f2fa4ee2 (diff) | |
download | mpd-8bb2da063f59e7586c61f88c1fb2d268e6191e5c.tar.gz mpd-8bb2da063f59e7586c61f88c1fb2d268e6191e5c.tar.xz mpd-8bb2da063f59e7586c61f88c1fb2d268e6191e5c.zip |
tag: added function tag_has_type()
tag_has_type() checks whether the tag contains one or more items with
the specified type.
Diffstat (limited to 'src/tag.h')
-rw-r--r-- | src/tag.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -23,6 +23,7 @@ #include <stdint.h> #include <stddef.h> +#include <stdbool.h> #include <string.h> enum tag_type { @@ -88,6 +89,12 @@ static inline void tag_add_item(struct tag *tag, enum tag_type itemType, struct tag *tag_dup(const struct tag *tag); +/** + * Checks whether the tag contains one or more items with + * the specified type. + */ +bool tag_has_type(const struct tag *tag, enum tag_type type); + int tag_equal(const struct tag *tag1, const struct tag *tag2); #endif |