aboutsummaryrefslogtreecommitdiff
path: root/include/unarchive.h
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-03 07:28:38 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-03 07:28:38 +0000
commit60bce4905cc50e3ec7ea90127823125e0d9acd03 (patch)
treeb46763c692948e7eabdd76f818cee7d2d7de16f0 /include/unarchive.h
parent97b141ac69b0bd548531f828dc7fdc892b8dd944 (diff)
downloadbusybox-w32-60bce4905cc50e3ec7ea90127823125e0d9acd03.tar.gz
busybox-w32-60bce4905cc50e3ec7ea90127823125e0d9acd03.tar.bz2
busybox-w32-60bce4905cc50e3ec7ea90127823125e0d9acd03.zip
Move bunzip2 idecompression code to libunarchive
Diffstat (limited to '')
-rw-r--r--include/unarchive.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/unarchive.h b/include/unarchive.h
index d9cf3c05c..56df5dadd 100644
--- a/include/unarchive.h
+++ b/include/unarchive.h
@@ -7,6 +7,7 @@
7#define ARCHIVE_EXTRACT_QUIET 8 7#define ARCHIVE_EXTRACT_QUIET 8
8 8
9#include <sys/types.h> 9#include <sys/types.h>
10#include <stdio.h>
10 11
11typedef struct gunzip_s { 12typedef struct gunzip_s {
12 unsigned short buffer_count; 13 unsigned short buffer_count;
@@ -90,6 +91,8 @@ extern char get_header_ar(archive_handle_t *archive_handle);
90extern char get_header_tar(archive_handle_t *archive_handle); 91extern char get_header_tar(archive_handle_t *archive_handle);
91extern char get_header_tar_gz(archive_handle_t *archive_handle); 92extern char get_header_tar_gz(archive_handle_t *archive_handle);
92 93
94extern unsigned char uncompressStream(FILE *zStream, FILE *stream);
95
93extern void seek_sub_file(int src_fd, unsigned int amount); 96extern void seek_sub_file(int src_fd, unsigned int amount);
94extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to); 97extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to);
95extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item); 98extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item);