diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-07-14 12:38:55 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-07-14 12:38:55 +0000 |
commit | 51ded05b3bf4df6f126420d39a40d27ea0728aa9 (patch) | |
tree | c8822dfac31b9cafe42fcd1228f7df3e182e543d | |
parent | a868ec89e8272c0cdf27e062785c4b5c6dcf66c5 (diff) | |
download | busybox-w32-51ded05b3bf4df6f126420d39a40d27ea0728aa9.tar.gz busybox-w32-51ded05b3bf4df6f126420d39a40d27ea0728aa9.tar.bz2 busybox-w32-51ded05b3bf4df6f126420d39a40d27ea0728aa9.zip |
enum entry for unarchive to be used by tar
-rw-r--r-- | include/libbb.h | 3 | ||||
-rw-r--r-- | libbb/libbb.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index e3d713321..a9c1a870f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -238,7 +238,8 @@ enum extract_functions_e { | |||
238 | extract_unzip_only = 256, | 238 | extract_unzip_only = 256, |
239 | extract_unconditional = 512, | 239 | extract_unconditional = 512, |
240 | extract_create_leading_dirs = 1024, | 240 | extract_create_leading_dirs = 1024, |
241 | extract_quiet = 2048 | 241 | extract_quiet = 2048, |
242 | extract_exclude_list = 4096 | ||
242 | }; | 243 | }; |
243 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), | 244 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), |
244 | const int extract_function, const char *prefix, char **extract_names); | 245 | const int extract_function, const char *prefix, char **extract_names); |
diff --git a/libbb/libbb.h b/libbb/libbb.h index e3d713321..a9c1a870f 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h | |||
@@ -238,7 +238,8 @@ enum extract_functions_e { | |||
238 | extract_unzip_only = 256, | 238 | extract_unzip_only = 256, |
239 | extract_unconditional = 512, | 239 | extract_unconditional = 512, |
240 | extract_create_leading_dirs = 1024, | 240 | extract_create_leading_dirs = 1024, |
241 | extract_quiet = 2048 | 241 | extract_quiet = 2048, |
242 | extract_exclude_list = 4096 | ||
242 | }; | 243 | }; |
243 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), | 244 | char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *), |
244 | const int extract_function, const char *prefix, char **extract_names); | 245 | const int extract_function, const char *prefix, char **extract_names); |