Move unzip, gz_open, gz_close to libbb

This commit is contained in:
Glenn L McGrath
2001-04-11 03:11:33 +00:00
parent d22e560ad6
commit 7fd92949d0
13 changed files with 3138 additions and 2005 deletions

View File

@ -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__ */