Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-07-12 14:24:57 +0400
committerGlenn L McGrath <bug1@ihug.co.nz>2001-07-12 14:24:57 +0400
commit3e94f729a54d13301d10b2a1c0225a951aaf074a (patch)
tree39a696609a5c484294907cfa62288758ba798229 /include
parentc1270088401f1e3f4f8a6bfa2ff5b7228c4a8da0 (diff)
Quiet mode, sometimes error messages arent wanted
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 4a4b9191c..224c561d5 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -237,7 +237,8 @@ enum extract_functions_e {
extract_control_tar_gz = 128,
extract_unzip_only = 256,
extract_unconditional = 512,
- extract_create_leading_dirs = 1024
+ extract_create_leading_dirs = 1024,
+ extract_quiet = 2048
};
char *unarchive(FILE *src_stream, FILE *out_stream, file_header_t *(*get_header)(FILE *),
const int extract_function, const char *prefix, char **extract_names);