2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2006-07-12 13:26:04 +05:30
|
|
|
/*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
2002-09-25 08:17:48 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include "unarchive.h"
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
void header_list(const file_header_t *file_header)
|
2002-09-25 08:17:48 +05:30
|
|
|
{
|
|
|
|
puts(file_header->name);
|
|
|
|
}
|