Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header_list.c « libunarchive « archival - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cb8f40d97dc3cf18ef84019438d0657fb9fbacd (plain)
1
2
3
4
5
6
7
8
9
10
11
/* vi: set sw=4 ts=4: */
/*
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */
#include "libbb.h"
#include "unarchive.h"

void header_list(const file_header_t *file_header)
{
	puts(file_header->name);
}