summaryrefslogtreecommitdiffstats
path: root/src/tag.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/tag.h b/src/tag.h
index 9322f05..a5d4f26 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -1,18 +1,14 @@
#pragma once
#include "list.h"
-#include "util.h"
struct tag {
- wchar_t *name;
- char *fname, *fpath;
-
- char *new_fname;
+ char *name, *fpath;
struct list tracks;
struct link link;
};
-struct tag *tag_init(const char *path, const char *fname);
+struct tag *tag_alloc(const char *path, const char *fname);
void tag_free(struct tag *tag);