X-Git-Url: https://git.gag.com/?p=debian%2Fgzip;a=blobdiff_plain;f=lzw.h;h=ffc451dda7780411912f03e575c2b266d45e655e;hp=4b7ac8680e17754f29100952b7ef590873e91661;hb=659cae49714b93487242525dfa0e5737463d78d8;hpb=302189d124ed5849c2589ea92e912eb24fdc4ab3 diff --git a/lzw.h b/lzw.h index 4b7ac86..ffc451d 100644 --- a/lzw.h +++ b/lzw.h @@ -1,12 +1,21 @@ /* lzw.h -- define the lzw functions. - * Copyright (C) 1992-1993 Jean-loup Gailly. - * This is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License, see the file COPYING. - */ -#if !defined(OF) && defined(lint) -# include "gzip.h" -#endif + Copyright (C) 1994-2018 Free Software Foundation, Inc. + Copyright (C) 1992-1993 Jean-loup Gailly. + + 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 3, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef BITS # define BITS 16 @@ -38,5 +47,5 @@ extern int maxbits; /* max bits per code for LZW */ extern int block_mode; /* block compress mode -C compatible with 2.0 */ -extern int lzw OF((int in, int out)); -extern int unlzw OF((int in, int out)); +extern int lzw (int in, int out); +extern int unlzw (int in, int out);