home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / compress / gnuzip_.zip / LZW.C < prev    next >
C/C++ Source or Header  |  1993-03-28  |  572b  |  27 lines

  1. /* lzw.c -- compress files in LZW format.
  2.  * This is a dummy version avoiding patent problems.
  3.  */
  4.  
  5. #ifndef lint
  6. static char rcsid[] = "$Id: lzw.c,v 0.7 1993/02/10 16:07:22 jloup Exp $";
  7. #endif
  8.  
  9. #include "tailor.h"
  10. #include "gzip.h"
  11. #include "lzw.h"
  12.  
  13. #include <stdio.h>
  14.  
  15. static int msg_done = 0;
  16.  
  17. /* Compress in to out with lzw method. */
  18. void lzw(in, out) 
  19.     int in, out;
  20. {
  21.     if (msg_done) return;
  22.     msg_done = 1;
  23.     fprintf(stderr,"output in compress .Z format not supported\n");
  24.     in++, out++; /* avoid warnings on unused variables */
  25.     exit_code = ERROR;
  26. }
  27.