busybox/archival/libunarchive/data_extract_to_stdout.c

13 lines
314 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
*/
2002-09-25 08:17:48 +05:30
#include "unarchive.h"
2004-03-27 16:56:32 +05:30
#include <unistd.h>
2002-09-25 08:17:48 +05:30
void data_extract_to_stdout(archive_handle_t *archive_handle)
2002-09-25 08:17:48 +05:30
{
bb_copyfd_size(archive_handle->src_fd, STDOUT_FILENO, archive_handle->file_header->size);
2002-09-25 08:17:48 +05:30
}