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);