2006-07-02 19:47:05 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-07-12 07:56:04 +00:00
|
|
|
/*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-07-12 07:56:04 +00:00
|
|
|
*/
|
2007-05-31 22:42:12 +00:00
|
|
|
#include "libbb.h"
|
2011-09-22 10:45:14 +00:00
|
|
|
#include "bb_archive.h"
|
2002-09-25 02:47:48 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC header_list(const file_header_t *file_header)
|
2002-09-25 02:47:48 +00:00
|
|
|
{
|
2010-01-09 18:56:15 +00:00
|
|
|
//TODO: cpio -vp DIR should output "DIR/NAME", not just "NAME" */
|
2002-09-25 02:47:48 +00:00
|
|
|
puts(file_header->name);
|
|
|
|
}
|