busybox/archival/libarchive/header_list.c

13 lines
305 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
*/
2007-06-01 04:12:12 +05:30
#include "libbb.h"
#include "bb_archive.h"
2002-09-25 08:17:48 +05:30
void FAST_FUNC header_list(const file_header_t *file_header)
2002-09-25 08:17:48 +05:30
{
//TODO: cpio -vp DIR should output "DIR/NAME", not just "NAME" */
2002-09-25 08:17:48 +05:30
puts(file_header->name);
}