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: 788246ce704febee754305417b0fd901ad668722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* vi: set sw=4 ts=4: */
/*
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */

#include "unarchive.h"
#include <unistd.h>

void data_extract_to_stdout(archive_handle_t *archive_handle)
{
	bb_copyfd_size(archive_handle->src_fd, STDOUT_FILENO, archive_handle->file_header->size);
}