diff options
| author | Miika Pekkarinen <miipekk@ihme.org> | 2006-11-10 08:03:33 +0000 |
|---|---|---|
| committer | Miika Pekkarinen <miipekk@ihme.org> | 2006-11-10 08:03:33 +0000 |
| commit | 0dd7ea2d712944b21ede9f57bebd1009b03932e6 (patch) | |
| tree | dc6065067aa862cc6a71c206b67554270fe507bd /tools/database.c | |
| parent | ae221f140231cb2fd4833443d7810dfce03c606a (diff) | |
| download | rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.zip rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.tar.gz rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.tar.bz2 rockbox-0dd7ea2d712944b21ede9f57bebd1009b03932e6.tar.xz | |
Support building tagcache db natively on PC using the core of the
Rockbox tagcache database engine. Only host endian support at the
moment and no command line parameters. Mainly for developers for
debugging at the moment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11497 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/database.c')
| -rw-r--r-- | tools/database.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/database.c b/tools/database.c new file mode 100644 index 0000000..780586e --- /dev/null +++ b/tools/database.c @@ -0,0 +1,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; +} + |