summaryrefslogtreecommitdiffstats
path: root/tools/database.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/database.c')
-rw-r--r--tools/database.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/database.c b/tools/database.c
new file mode 100644
index 0000000000..780586ea90
--- /dev/null
+++ b/tools/database.c
@@ -0,0 +1,13 @@
+/* A _very_ skeleton file to demonstrate building tagcache db on host. */
+
+#include <stdio.h>
+#include "tagcache.h"
+
+int main(int argc, char **argv)
+{
+ tagcache_init();
+ build_tagcache("/export/stuff/mp3");
+
+ return 0;
+}
+