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: 5849a762edbd65098deadb7963ba37fffa29b208 (plain)
1
2
3
4
5
6
7
#include <stdio.h>
#include "unarchive.h"

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