diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-15 12:51:59 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-15 12:51:59 +0000 |
commit | 685f5fd6f473f802b465500d5ec7c1baba0ec357 (patch) | |
tree | 1afa19b480add8d7c3a582b93b31971c23d5594f /include | |
parent | a529d885d2ac3f0830764f70253e172bbb439133 (diff) | |
download | busybox-685f5fd6f473f802b465500d5ec7c1baba0ec357.tar.gz |
untar changed to allow deb_extract to extract to memory, allows better operation of dpkg-deb -f
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 515bf2760..569ed9397 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -239,7 +239,9 @@ typedef enum extract_function_e { 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, const int untar_function, const char *argument); +extern char *untar(FILE *src_tar_file, FILE *output, const int untar_function, const char *argument); +extern char *read_text_file_to_buffer(FILE *src_file); +extern char *read_package_field(const char *package_buffer); extern int unzip(FILE *l_in_file, FILE *l_out_file); extern void gz_close(int gunzip_pid); |