home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / os2 / pgp263.arj / PGP263I.SRC / PGP263II.ZIP / src / zglobals.c < prev    next >
C/C++ Source or Header  |  1995-09-27  |  820b  |  26 lines

  1. /*
  2.  
  3.  Copyright (C) 1990,1991 Mark Adler, Richard B. Wales, and Jean-loup Gailly.
  4.  Permission is granted to any individual or institution to use, copy, or
  5.  redistribute this software so long as all of the original files are included
  6.  unmodified, that it is not sold for profit, and that this copyright notice
  7.  is retained.
  8.  
  9. */
  10.  
  11. /*
  12.  *  globals.c by Mark Adler.
  13.  */
  14.  
  15. #define GLOBALS         /* include definition of errors[] in zip.h */
  16. #include "zip.h"
  17.  
  18. /* Argument processing globals */
  19. int method = BEST;      /* one of BEST, DEFLATE (only), or STORE (only) */
  20. #ifdef MACTC5
  21. int level = 9;          /* 0=fastest compression, 9=best compression */
  22. #else
  23. int level = 5;          /* 0=fastest compression, 9=best compression */
  24. #endif
  25. char *special = (char *)NULL;   /* List of special suffixes */
  26.