summaryrefslogtreecommitdiffstats
path: root/tools/database.c
blob: 9f0c620c2a386df8c9b686185f6583f201c07af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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();
    tagcache_build("/export/stuff/mp3");
    tagcache_reverse_scan();
    
    return 0;
}