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