blob: 3b820f2105e80c640e43ace5ce81c32818a841ae (
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 {
wchar_t *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);
|