2006-11-10 08:03:33 +00:00
|
|
|
/* 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();
|
2008-05-03 16:23:37 +00:00
|
|
|
tagcache_build("/export/stuff/mp3");
|
2006-11-19 19:11:30 +00:00
|
|
|
tagcache_reverse_scan();
|
2006-11-10 08:03:33 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|