]> wimlib.net Git - wimlib/commitdiff
Place common decompression/compression code in public domain
authorEric Biggers <ebiggers3@gmail.com>
Thu, 3 Jul 2014 23:25:13 +0000 (18:25 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Thu, 3 Jul 2014 23:33:18 +0000 (18:33 -0500)
Not much except Huffman coding in these files anymore, and that should be
completely free especially since it's been over 60 years since it was
invented...

include/wimlib/compress_common.h
include/wimlib/decompress_common.h
src/compress_common.c
src/decompress_common.c

index f1f788e29470e561b1b259df96278daf84ec0afa..d2b6310e91534f9f3cf6d3ece57b732d7ac86c3c 100644 (file)
@@ -2,6 +2,9 @@
  * compress_common.h
  *
  * Header for compression code shared by multiple compression formats.
+ *
+ * The author dedicates this file to the public domain.
+ * You can do whatever you want with this file.
  */
 
 #ifndef _WIMLIB_COMPRESS_COMMON_H
@@ -71,4 +74,4 @@ make_canonical_huffman_code(unsigned num_syms,
                            u8 lens[restrict],
                            u32 codewords[restrict]);
 
-#endif /* _WIMLIB_COMPRESS_H */
+#endif /* _WIMLIB_COMPRESS_COMMON_H */
index ef7ebe953960cd33c2e91efd341c37f4ba717441..d6c9089909864b87b98ea753a74fcfe6dcbb6dfe 100644 (file)
@@ -2,6 +2,9 @@
  * decompress_common.h
  *
  * Header for decompression code shared by multiple compression formats.
+ *
+ * The author dedicates this file to the public domain.
+ * You can do whatever you want with this file.
  */
 
 #ifndef _WIMLIB_DECOMPRESS_COMMON_H
index 682a53c5f259e2416c995e6d88238f4070486949..bdac4ed99657aa5617360ccb105e420caa0e9650 100644 (file)
@@ -2,25 +2,12 @@
  * compress_common.c
  *
  * Code for compression shared among multiple compression formats.
- */
-
-/*
- * Copyright (C) 2012, 2013, 2014 Eric Biggers
- *
- * This file is part of wimlib, a library for working with WIM files.
- *
- * wimlib 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 of the License, or (at your option)
- * any later version.
  *
- * 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 General Public License for more
- * details.
+ * Author:  Eric Biggers
+ * Year:    2012 - 2014
  *
- * You should have received a copy of the GNU General Public License
- * along with wimlib; if not, see http://www.gnu.org/licenses/.
+ * The author dedicates this file to the public domain.
+ * You can do whatever you want with this file.
  */
 
 #ifdef HAVE_CONFIG_H
index 77fdd251903732eb4c03b2aba20debbb0b06332d..64e171d9491fa1bc3277045bd5719a503b354d29 100644 (file)
@@ -2,25 +2,12 @@
  * decompress_common.c
  *
  * Code for decompression shared among multiple compression formats.
- */
-
-/*
- * Copyright (C) 2012, 2013, 2014 Eric Biggers
- *
- * This file is part of wimlib, a library for working with WIM files.
- *
- * wimlib 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 of the License, or (at your option)
- * any later version.
  *
- * 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 General Public License for more
- * details.
+ * Author:  Eric Biggers
+ * Year:    2012 - 2014
  *
- * You should have received a copy of the GNU General Public License
- * along with wimlib; if not, see http://www.gnu.org/licenses/.
+ * The author dedicates this file to the public domain.
+ * You can do whatever you want with this file.
  */
 
 #ifdef HAVE_CONFIG_H