changeset 22:d87e84936795

misc: update copyright years
author David Demelier <markand@malikania.fr>
date Wed, 24 Feb 2021 11:43:50 +0100
parents 939fe74cd80a
children b7690784cd17
files LICENSE.md Makefile buf-clear.c buf-dup.c buf-erase.c buf-finish.c buf-init.c buf-int.h buf-printf.c buf-putc.c buf-puts.c buf-reserve.c buf-resize.c buf-shrink.c buf-sub.c buf-vprintf.c buf.c buf.h buf_clear.3 buf_dup.3 buf_erase.3 buf_finish.3 buf_init.3 buf_printf.3 buf_putc.3 buf_puts.3 buf_reserve.3 buf_resize.3 buf_shrink.3 buf_sub.3 buf_vprintf.3 libbuf.3 test/test-clear.c test/test-dup.c test/test-erase.c test/test-finish.c test/test-init.c test/test-printf.c test/test-putc.c test/test-puts.c test/test-reserve.c test/test-resize.c test/test-shrink.c test/test-sub.c
diffstat 44 files changed, 58 insertions(+), 58 deletions(-) [+]
line wrap: on
line diff
--- a/LICENSE.md	Wed Feb 24 11:39:26 2021 +0100
+++ b/LICENSE.md	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 libbuf ISC LICENSE
 ==================
 
-Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 
 Permission to use, copy, modify, and/or distribute this software for any
 purpose with or without fee is hereby granted, provided that the above
--- a/Makefile	Wed Feb 24 11:39:26 2021 +0100
+++ b/Makefile	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 #
 # Makefile -- simple string buffer for C
 #
-# Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+# Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 #
 # Permission to use, copy, modify, and/or distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
--- a/buf-clear.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-clear.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-clear.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-dup.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-dup.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-dup.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-erase.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-erase.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-erase.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-finish.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-finish.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-finish.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-init.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-init.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-init.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-int.h	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-int.h	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-int.h -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-printf.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-printf.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-printf.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-putc.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-putc.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-putc.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-puts.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-puts.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-puts.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-reserve.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-reserve.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-reserve.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-resize.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-resize.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-resize.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-shrink.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-shrink.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-shrink.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-sub.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-sub.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-sub.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf-vprintf.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf-vprintf.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf-vprintf.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf.h	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf.h	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.h -- simple string buffer for C
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/buf_clear.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_clear.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_clear.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_CLEAR 3
 .Os
 .\" NAME
--- a/buf_dup.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_dup.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_dup.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_DUP 3
 .Os
 .\" NAME
--- a/buf_erase.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_erase.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_erase.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_ERASE 3
 .Os
 .\" NAME
--- a/buf_finish.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_finish.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_finish.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_FINISH 3
 .Os
 .\" NAME
--- a/buf_init.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_init.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_init.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_INIT 3
 .Os
 .\" NAME
--- a/buf_printf.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_printf.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_printf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_PRINTF 3
 .Os
 .\" NAME
--- a/buf_putc.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_putc.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_putc.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_PUTC 3
 .Os
 .\" NAME
--- a/buf_puts.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_puts.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_puts.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_PUTS 3
 .Os
 .\" NAME
--- a/buf_reserve.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_reserve.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_reserve.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_RESERVE 3
 .Os
 .\" NAME
--- a/buf_resize.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_resize.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_resize.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_RESIZE 3
 .Os
 .\" NAME
--- a/buf_shrink.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_shrink.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_shrink.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_SHRINK 3
 .Os
 .\" NAME
--- a/buf_sub.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_sub.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_sub.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_SUB 3
 .Os
 .\" NAME
--- a/buf_vprintf.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/buf_vprintf.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_vprintf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt BUF_VPRINTF 3
 .Os
 .\" NAME
--- a/libbuf.3	Wed Feb 24 11:39:26 2021 +0100
+++ b/libbuf.3	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" libbuf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
 .\"
 .\" Permission to use, copy, modify, and/or distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd October 29, 2019-2020
+.Dd October 29, 2019-2021
 .Dt LIBBUF 3
 .Os
 .\" NAME
--- a/test/test-clear.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-clear.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-clear.c -- test buf_clear function
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-dup.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-dup.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-dup.c -- test buf_dup
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-erase.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-erase.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-erase.c -- test buf_erase
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-finish.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-finish.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-finish.c -- test buf_finish
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-init.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-init.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-init.c -- test buf_init
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-printf.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-printf.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-printf.c -- test buf_printf
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-putc.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-putc.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-putc.c -- test buf_putc
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-puts.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-puts.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-puts.c -- test buf_puts
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-reserve.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-reserve.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-reserve.c -- test buf_reserve
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-resize.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-resize.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-resize.c -- test buf_resize
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-shrink.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-shrink.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-shrink.c -- test buf_shrink
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/test/test-sub.c	Wed Feb 24 11:39:26 2021 +0100
+++ b/test/test-sub.c	Wed Feb 24 11:43:50 2021 +0100
@@ -1,7 +1,7 @@
 /*
  * test-sub.c -- test buf_sub
  *
- * Copyright (c) 2019-2020 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above