blob: 780586ea90ef40fef272cc611ac1274f4dff4171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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");
return 0;
}
|