Gitiles
Code Review
Sign In
gerrit.rockbox.org
/
rockbox
/
75a11124f0446823ef2aa48910d92f02b1a7d1bb
/
.
/
tools
/
database.c
blob: 3826249d757422d921d200f3ef5a37ea648cf109 [
file
] [
log
] [
blame
]
/* 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
();
build_tagcache
(
"/export/stuff/mp3"
);
tagcache_reverse_scan
();
return
0
;
}