mirror of
				https://github.com/Rockbox/rockbox.git
				synced 2025-10-26 23:36:37 -04:00 
			
		
		
		
	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
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* 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;
 | |
| }
 | |
| 
 |