diff options
author | Ron Yorston <rmy@pobox.com> | 2018-11-28 10:28:18 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2018-11-28 10:28:18 +0000 |
commit | 2a69a2200a141c1504b662eca64b802cdab71b12 (patch) | |
tree | eab0cc01852db237a26052a83c8f582ed92b7cd9 /include/bb_archive.h | |
parent | 97ca1f4b955f486cd26461cb09185335483d2921 (diff) | |
parent | 572dfb8e78323b9837f7c5e3369ee233a440b8f2 (diff) | |
download | busybox-w32-2a69a2200a141c1504b662eca64b802cdab71b12.tar.gz busybox-w32-2a69a2200a141c1504b662eca64b802cdab71b12.tar.bz2 busybox-w32-2a69a2200a141c1504b662eca64b802cdab71b12.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'include/bb_archive.h')
-rw-r--r-- | include/bb_archive.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/bb_archive.h b/include/bb_archive.h index ace9c8e23..5abcdcb44 100644 --- a/include/bb_archive.h +++ b/include/bb_archive.h | |||
@@ -228,12 +228,7 @@ const llist_t *find_list_entry(const llist_t *list, const char *filename) FAST_F | |||
228 | const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC; | 228 | const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC; |
229 | 229 | ||
230 | /* A bit of bunzip2 internals are exposed for compressed help support: */ | 230 | /* A bit of bunzip2 internals are exposed for compressed help support: */ |
231 | typedef struct bunzip_data bunzip_data; | 231 | char *unpack_bz2_data(const char *packed, int packed_len, int unpacked_len) FAST_FUNC; |
232 | int start_bunzip(void *, bunzip_data **bdp, int in_fd, const void *inbuf, int len) FAST_FUNC; | ||
233 | /* NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes | ||
234 | * in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0: */ | ||
235 | int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC; | ||
236 | void dealloc_bunzip(bunzip_data *bd) FAST_FUNC; | ||
237 | 232 | ||
238 | /* Meaning and direction (input/output) of the fields are transformer-specific */ | 233 | /* Meaning and direction (input/output) of the fields are transformer-specific */ |
239 | typedef struct transformer_state_t { | 234 | typedef struct transformer_state_t { |