Revert "Replace yield_codec() with a call to queue_wait_w_tmo()" and the related...
[Rockbox.git] / tools / database.c
blob3826249d757422d921d200f3ef5a37ea648cf109
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 build_tagcache("/export/stuff/mp3");
10 tagcache_reverse_scan();
12 return 0;