f8a641d6f8
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17331 a1c6a512-1295-4272-9138-f99709370657
14 lines
264 B
C
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;
|
|
}
|
|
|