3
0

data_extract_to_stdout.c 335 B

1234567891011121314
  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 "libbb.h"
  6. #include "unarchive.h"
  7. void FAST_FUNC data_extract_to_stdout(archive_handle_t *archive_handle)
  8. {
  9. bb_copyfd_exact_size(archive_handle->src_fd,
  10. STDOUT_FILENO,
  11. archive_handle->file_header->size);
  12. }