diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-11 03:11:33 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-04-11 03:11:33 +0000 |
commit | 7fd92949d0d8106062a19b6017e6fecc0d825bb2 (patch) | |
tree | c5b8f228672bcc7af70af1cfc2535870f4016f71 /include/libbb.h | |
parent | d22e560ad6a3fe8bfbd23519935a1942cd510758 (diff) |
Move unzip, gz_open, gz_close to libbb
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 06215d12b..279b4e78b 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -227,4 +227,8 @@ typedef struct ar_headers_s { } ar_headers_t; extern ar_headers_t get_ar_headers(int srcFd); extern int deb_extract(int optflags, const char *dir_name, const char *deb_filename); + +extern int unzip(FILE *l_in_file, FILE *l_out_file); +extern void gz_close(int gunzip_pid); +extern int gz_open(FILE *compressed_file, int *pid); #endif /* __LIBBB_H__ */ |