[Extractor-gtk-cvslog] SF.net SVN: extractor-gtk:[85] trunk/extractor/extractor.c
Extract files from unusual archive formats
Brought to you by:
someone-guy
From: <som...@us...> - 2008-08-22 16:03:13
|
Revision: 85 http://extractor-gtk.svn.sourceforge.net/extractor-gtk/?rev=85&view=rev Author: someone-guy Date: 2008-08-22 16:03:12 +0000 (Fri, 22 Aug 2008) Log Message: ----------- Print more information in text-mode list like file size and offset. Modified Paths: -------------- trunk/extractor/extractor.c Modified: trunk/extractor/extractor.c =================================================================== --- trunk/extractor/extractor.c 2008-08-22 16:02:52 UTC (rev 84) +++ trunk/extractor/extractor.c 2008-08-22 16:03:12 UTC (rev 85) @@ -294,7 +294,10 @@ } if (list_files) { file_t *f = flist; - while(f->name) { printf("%s\n", f->name); f++; }; + while(f->name) { + printf("%12"PRId64" 0x%012"PRIx64" %c %s\n", f->len, f->start, f->compressed ? 'c' : ' ', f->name); + f++; + }; return 0; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |