aboutsummaryrefslogtreecommitdiff
path: root/include/bb_archive.h
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-11-28 10:28:18 +0000
committerRon Yorston <rmy@pobox.com>2018-11-28 10:28:18 +0000
commit2a69a2200a141c1504b662eca64b802cdab71b12 (patch)
treeeab0cc01852db237a26052a83c8f582ed92b7cd9 /include/bb_archive.h
parent97ca1f4b955f486cd26461cb09185335483d2921 (diff)
parent572dfb8e78323b9837f7c5e3369ee233a440b8f2 (diff)
downloadbusybox-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.h7
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
228const llist_t *find_list_entry2(const llist_t *list, const char *filename) FAST_FUNC; 228const 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: */
231typedef struct bunzip_data bunzip_data; 231char *unpack_bz2_data(const char *packed, int packed_len, int unpacked_len) FAST_FUNC;
232int 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: */
235int read_bunzip(bunzip_data *bd, char *outbuf, int len) FAST_FUNC;
236void 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 */
239typedef struct transformer_state_t { 234typedef struct transformer_state_t {