Handle streams separately in tree_add_track()
[cmus.git] / comment.h
blob82057cab6dcf4b2e79653e78fce0ec7265a18893
1 #ifndef _COMMENT_H
2 #define _COMMENT_H
4 #include "keyval.h"
6 const char *comments_get_albumartist(const struct keyval *comments);
7 int comments_get_int(const struct keyval *comments, const char *key);
8 int comments_get_date(const struct keyval *comments, const char *key);
10 int comments_add(struct growing_keyvals *c, const char *key, char *val);
11 int comments_add_const(struct growing_keyvals *c, const char *key, const char *val);
13 #endif