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

#include "list.h"

struct tag {
	char *name, *fpath;

	struct list tracks;

	struct link link;
};

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