rockbox/tools/database.c
Bertrik Sikken f8a641d6f8 Renamed build_tagcache to tagcache_build to make it consistent with the function naming of the other functions in tagcache.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17331 a1c6a512-1295-4272-9138-f99709370657
2008-05-03 16:23:37 +00:00

14 lines
264 B
C

/* 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;
}