summaryrefslogtreecommitdiffstats
path: root/src/tag.h
blob: 9322f0550a599176a9871ddb28820c3b521d9bc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "list.h"
#include "util.h"

struct tag {
	wchar_t *name;
	char *fname, *fpath;

	char *new_fname;

	struct list tracks;

	struct link link;
};

struct tag *tag_init(const char *path, const char *fname);
void tag_free(struct tag *tag);