aboutsummaryrefslogtreecommitdiff
path: root/include/unarchive.h
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-10-19 06:19:22 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-10-19 06:19:22 +0000
commitee4f9fb549b7c4daef7029c101961fca985c0037 (patch)
tree88df433818b25262966b84fa81aecde8b75c8ed1 /include/unarchive.h
parentb973fe81f202bbb7f29f88f6b9108528c1a909a1 (diff)
downloadbusybox-w32-ee4f9fb549b7c4daef7029c101961fca985c0037.tar.gz
busybox-w32-ee4f9fb549b7c4daef7029c101961fca985c0037.tar.bz2
busybox-w32-ee4f9fb549b7c4daef7029c101961fca985c0037.zip
Fix exclude/include problem
git-svn-id: svn://busybox.net/trunk/busybox@5676 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r--include/unarchive.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unarchive.h b/include/unarchive.h
index 023c3e8aa..956c74fb8 100644
--- a/include/unarchive.h
+++ b/include/unarchive.h
@@ -36,6 +36,7 @@ typedef struct archive_handle_s {
36 char (*filter)(const llist_t *, const llist_t *, const char *); 36 char (*filter)(const llist_t *, const llist_t *, const char *);
37 const llist_t *accept; 37 const llist_t *accept;
38 const llist_t *reject; 38 const llist_t *reject;
39 const llist_t *passed; /* List of files that have successfully been worked on */
39 40
40 /* Contains the processed header entry */ 41 /* Contains the processed header entry */
41 file_header_t *file_header; 42 file_header_t *file_header;
@@ -89,5 +90,5 @@ extern void seek_sub_file(int src_fd, unsigned int amount);
89extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to); 90extern const unsigned short data_align(const int src_fd, const unsigned int offset, const unsigned short align_to);
90extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item); 91extern const llist_t *add_to_list(const llist_t *old_head, const char *new_item);
91extern int copy_file_chunk_fd(int src_fd, int dst_fd, unsigned long long chunksize); 92extern int copy_file_chunk_fd(int src_fd, int dst_fd, unsigned long long chunksize);
92 93extern const llist_t *find_list_entry(const llist_t *list, const char *filename);
93#endif 94#endif