Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / tools / database.c
blob9f0c620c2a386df8c9b686185f6583f201c07af0
1 /* A _very_ skeleton file to demonstrate building tagcache db on host. */
3 #include <stdio.h>
4 #include "tagcache.h"
6 int main(int argc, char **argv)
8 tagcache_init();
9 tagcache_build("/export/stuff/mp3");
10 tagcache_reverse_scan();
12 return 0;