diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-13 04:02:57 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-13 04:02:57 +0000 |
commit | 445fb952b8becc78889d3079e3053f76aa2eba9c (patch) | |
tree | feda0730549303c7fadd259741bea57207e46431 /include/libbb.h | |
parent | 1e04ea388f5f673f44503052d0f8873e4017abc3 (diff) | |
download | busybox-445fb952b8becc78889d3079e3053f76aa2eba9c.tar.gz |
dpkg-deb -f and partial -I commands, adds 600 bytes
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index bc8e3c5f3..515bf2760 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -235,10 +235,11 @@ typedef enum extract_function_e { extract_extract = 8, extract_verbose_extract = 16, extract_list = 32, - extract_fsys_tarfile = 64 + extract_fsys_tarfile = 64, + extract_field = 128 } extract_function_t; extern int deb_extract(const char *package_filename, int function, char *target_dir); -extern int untar(FILE *src_tar_file, int untar_function, char *base_path); +extern int untar(FILE *src_tar_file, const int untar_function, const char *argument); extern int unzip(FILE *l_in_file, FILE *l_out_file); extern void gz_close(int gunzip_pid); |