fix FS#9131 - line alingment was wong in the 160x128x16 cabbie wps for the progress...
[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;