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

data_extract_to_stdout.c « libunarchive « archival - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3efea16dfbfcdf10877aa8c545c68f3836e2166 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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 FAST_FUNC data_extract_to_stdout(archive_handle_t *archive_handle)
{
	bb_copyfd_exact_size(archive_handle->src_fd,
			STDOUT_FILENO,
			archive_handle->file_header->size);
}