]> wimlib.net Git - wimlib/blobdiff - src/lzx-decomp.c
Clean up file headers
[wimlib] / src / lzx-decomp.c
index 55f0f61234a298122e9941753757cbaf0b7d5242..267320ab507f427aa0d9f5b8508d835cb7551cd4 100644 (file)
@@ -4,29 +4,31 @@
  * Routines for LZX decompression.  The LZX format has many similarities to the
  * DEFLATE format used in zlib and gzip, but it's not quite the same.
  *
- *  source:     modified lzx.c from cabextract v0.5                        
- *  notes:      This file has been modified from code taken from cabextract
- *                     v0.5, which was, itself, a modified version of the 
- *                     lzx decompression code from unlzx.                                               
+ */
+
+/*
+ * Copyright (C) 2012 Eric Biggers
  *
- * wimlib - Library for working with WIM files 
+ * This file is part of wimlib, a library for working with WIM files.
  *
- * This library is free software; you can redistribute it and/or modify it under
- * the terms of the GNU Lesser General Public License as published by the Free
- * Software Foundation; either version 2.1 of the License, or (at your option) any
- * later version.
+ * wimlib is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation; either version 2.1 of the License, or (at your option)
+ * any later version.
  *
- * This library 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 Lesser General Public License for more details.
+ * wimlib 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 Lesser General Public License for more
+ * details.
  *
- * You should have received a copy of the GNU Lesser General Public License along
- * with this library; if not, write to the Free Software Foundation, Inc., 59
- * Temple Place, Suite 330, Boston, MA 02111-1307 USA 
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with wimlib; if not, see http://www.gnu.org/licenses/.
  */
 
 /* 
- * This file has been customized for WIMLIB.
+ * This file has been modified from code taken from cabextract v0.5, which was,
+ * itself, a modified version of the lzx decompression code from unlzx.  The
+ * code has been customized for wimlib.
  *
  * Some notes on the LZX compression format as used in Windows Imaging (WIM)
  * files: