repo.or.cz
/
Rockbox.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move iriver checksums to its own file to remove unneeded inclusion and kill warnings...
[Rockbox.git]
/
tools
/
database.c
blob
3826249d757422d921d200f3ef5a37ea648cf109
1
/* A _very_ skeleton file to demonstrate building tagcache db on host. */
2
3
#include <stdio.h>
4
#include
"tagcache.h"
5
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
tagcache_init
();
9
build_tagcache
(
"/export/stuff/mp3"
);
10
tagcache_reverse_scan
();
11
12
return
0
;
13
}
14