data_extract_to_stdout.c 314 B

123456789101112
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  4. */
  5. #include "unarchive.h"
  6. #include <unistd.h>
  7. void data_extract_to_stdout(archive_handle_t *archive_handle)
  8. {
  9. bb_copyfd_size(archive_handle->src_fd, STDOUT_FILENO, archive_handle->file_header->size);
  10. }