97b62d4781
2004-07-06 Matthias Klose <doko@debian.org> * Makefile.in: Regenerate. * fastjar.texi: Update for '-u'. 2004-05-19 Casey Marshall <csm@gnu.org> PR 7854 * Makefile.am (jar_SOURCES): added shift.c, shift.h. (jar_CPPFLAGS): define WITH_SHIFT_DOWN. * compress.c Added FSF copyright. (write_data): new function. (compress_file): call write_data. * jartool.c Updated copyright year. (progname): new variable. (end_of_entries): new variable. (main): open and read file when updating. (find_entry): new function. (looks_like_dir): new function. (read_entries): new function. (make_manifest): added parameter `updating'. Call `add_file_to_jar' with `updating'. (add_to_jar_with_dir): added parameter `updating'. Call `add_to_jar' with `updating'. (add_to_jar): added parameter `updating'. Call `add_file_to_jar' with `updating'. Don't add directories if they already exist. (add_file_to_jar): added parameter `updating'. Update entries if they already exist. * jartool.h Added #ifndef __FASTJAR_JARTOOL_H__. (struct zipentry): added `flags'. * shift.c: new file. * shift.h: new file. * zipfile.h (CEN_FLAGS): new constant. From-SVN: r84171
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
/* $Id: compress.h,v 1.1 2000/12/09 03:08:23 apbianco Exp $
|
|
|
|
$Log: compress.h,v $
|
|
Revision 1.1 2000/12/09 03:08:23 apbianco
|
|
2000-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
|
|
|
|
* fastjar: Imported.
|
|
|
|
Revision 1.1.1.1 1999/12/06 03:09:12 toast
|
|
initial checkin..
|
|
|
|
|
|
|
|
Revision 1.3 1999/05/10 08:32:09 burnsbr
|
|
added new function protos.
|
|
|
|
Revision 1.2 1999/04/23 12:02:20 burnsbr
|
|
added licence
|
|
|
|
Revision 1.1 1999/04/23 11:59:37 burnsbr
|
|
Initial revision
|
|
|
|
|
|
*/
|
|
|
|
/*
|
|
compress.h - header for compression
|
|
Copyright (C) 1999 Bryan Burns
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* Initializes the compression data structure(s) */
|
|
void init_compression(void);
|
|
|
|
/* Compresses the file specified by in_fd and appends it to out_fd */
|
|
int compress_file(int, int, struct zipentry *, struct zipentry *);
|
|
|
|
/* Frees memory used by compression function */
|
|
void end_compression(void);
|
|
|
|
void init_inflation(void);
|
|
int inflate_file(pb_file *, int, struct zipentry *);
|
|
void end_inflation(void);
|
|
Bytef *inflate_string(pb_file *, ub4 *, ub4 *);
|