summaryrefslogtreecommitdiffstats
path: root/src/tag.h
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-12-20 16:25:43 +0100
committerLouis Burda <quent.burda@gmail.com>2021-12-20 16:25:43 +0100
commitf07580d31d1148c4a1811c36b09ca0ad50d9576b (patch)
tree05a8fbb44af81f3b5937df80c5af3305ec3ed3c9 /src/tag.h
parentfaee8e9c6db45c6adacfc5113d55927f92e8bf29 (diff)
downloadtmus-f07580d31d1148c4a1811c36b09ca0ad50d9576b.tar.gz
tmus-f07580d31d1148c4a1811c36b09ca0ad50d9576b.zip
Restructured repository and added automatic make dependency generation
Diffstat (limited to 'src/tag.h')
-rw-r--r--src/tag.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tag.h b/src/tag.h
new file mode 100644
index 0000000..cf2c757
--- /dev/null
+++ b/src/tag.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "list.h"
+#include "util.h"
+
+struct tag {
+ char *name;
+ char *fname, *fpath;
+
+ struct link link;
+};
+