home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / ZIP19P1.ZIP / revision.h < prev    next >
C/C++ Source or Header  |  1993-01-23  |  1KB  |  46 lines

  1. /*
  2.  
  3.  Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly,
  4.  Kai Uwe Rommel and Igor Mandrichenko.
  5.  Permission is granted to any individual or institution to use, copy, or
  6.  redistribute this software so long as all of the original files are included
  7.  unmodified, that it is not sold for profit, and that this copyright notice
  8.  is retained.
  9.  
  10. */
  11.  
  12. /*
  13.  *  revision.h by Mark Adler.
  14.  */
  15.  
  16. #define REVISION 19
  17. #define REVDATE "Aug 20th 1992"
  18.  
  19. /* Copyright notice for binary executables--this notice only applies to
  20.  * those (zip, zipcloak, zipsplit, and zipnote), not to this file
  21.  * (revision.h).
  22.  */
  23.  
  24. #ifndef NOCPYRT
  25. char *copyright[] = {
  26. #ifdef VMS
  27. "Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly,",
  28. "Kai Uwe Rommel and Igor Mandrichenko. Type '%s -L' for the software license.",
  29. #else
  30. "Copyright (C) 1990-1992 Mark Adler, Richard B. Wales, Jean-loup Gailly",
  31. "and Kai Uwe Rommel. Type '%s -L' for the software License.",
  32. #endif
  33. };
  34. char *disclaimer[] = {
  35. "",
  36. "Permission is granted to any individual or institution to use, copy, or",
  37. "redistribute this executable so long as it is not modified and that it is",
  38. "not sold for profit.",
  39. "",
  40. "LIKE ANYTHING ELSE THAT'S FREE, ZIP AND ITS ASSOCIATED UTILITIES ARE",
  41. "PROVIDED AS IS AND COME WITH NO WARRANTY OF ANY KIND, EITHER EXPRESSED OR",
  42. "IMPLIED. IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES",
  43. "RESULTING FROM THE USE OF THIS SOFTWARE."
  44. };
  45. #endif /* !NOCPYRT */
  46.