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

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

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

	struct link tracks;

	struct link link;
};

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