summaryrefslogtreecommitdiffstats
path: root/src/tag.h
diff options
context:
space:
mode:
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;
+};
+