From 95fa3faba84e30de98bd1aefe6ffa2d9da30055d Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 30 Jan 2016 17:47:55 -0600 Subject: [PATCH] Update years --- src/bt_matchfinder.h | 2 +- src/deflate_compress.c | 2 +- src/deflate_decompress.c | 2 +- src/gzip_compress.c | 2 +- src/gzip_decompress.c | 2 +- src/hc_matchfinder.h | 2 +- src/zlib_compress.c | 2 +- src/zlib_decompress.c | 2 +- tools/benchmark.c | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/bt_matchfinder.h b/src/bt_matchfinder.h index 6a224c3..7588695 100644 --- a/src/bt_matchfinder.h +++ b/src/bt_matchfinder.h @@ -2,7 +2,7 @@ * bt_matchfinder.h - Lempel-Ziv matchfinding with a hash table of binary trees * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/deflate_compress.c b/src/deflate_compress.c index a271fed..751d18b 100644 --- a/src/deflate_compress.c +++ b/src/deflate_compress.c @@ -2,7 +2,7 @@ * deflate_compress.c - a compressor for DEFLATE * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/deflate_decompress.c b/src/deflate_decompress.c index 8ea1415..93fc852 100644 --- a/src/deflate_decompress.c +++ b/src/deflate_decompress.c @@ -2,7 +2,7 @@ * deflate_decompress.c - a decompressor for DEFLATE * * Author: Eric Biggers - * Year: 2014, 2015, 2016 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/gzip_compress.c b/src/gzip_compress.c index e66fa3c..1945353 100644 --- a/src/gzip_compress.c +++ b/src/gzip_compress.c @@ -2,7 +2,7 @@ * gzip_compress.c - compress with a gzip wrapper * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/gzip_decompress.c b/src/gzip_decompress.c index 7237c5a..20a3ab5 100644 --- a/src/gzip_decompress.c +++ b/src/gzip_decompress.c @@ -2,7 +2,7 @@ * gzip_decompress.c - decompress with a gzip wrapper * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/hc_matchfinder.h b/src/hc_matchfinder.h index edc9cea..2b55645 100644 --- a/src/hc_matchfinder.h +++ b/src/hc_matchfinder.h @@ -2,7 +2,7 @@ * hc_matchfinder.h - Lempel-Ziv matchfinding with a hash table of linked lists * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/zlib_compress.c b/src/zlib_compress.c index f8ab689..0a5e813 100644 --- a/src/zlib_compress.c +++ b/src/zlib_compress.c @@ -2,7 +2,7 @@ * zlib_compress.c - compress with a zlib wrapper * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/src/zlib_decompress.c b/src/zlib_decompress.c index 25024f5..5404886 100644 --- a/src/zlib_decompress.c +++ b/src/zlib_decompress.c @@ -2,7 +2,7 @@ * zlib_decompress.c - decompress with a zlib wrapper * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file. diff --git a/tools/benchmark.c b/tools/benchmark.c index 7e3c2fd..e6e503f 100644 --- a/tools/benchmark.c +++ b/tools/benchmark.c @@ -2,7 +2,7 @@ * benchmark.c - a compression testing and benchmark program * * Author: Eric Biggers - * Year: 2014, 2015 + * Year: 2014-2016 * * The author dedicates this file to the public domain. * You can do whatever you want with this file.