changeset 28:dbdc17e11648

misc: update copyright years
author David Demelier <markand@malikania.fr>
date Sun, 02 Jan 2022 10:15:18 +0100
parents 4c5538271f2b
children 5cbb723ad2a9
files LICENSE.md Makefile 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 30 files changed, 44 insertions(+), 44 deletions(-) [+]
line wrap: on
line diff
--- a/LICENSE.md	Sat Jun 26 21:38:20 2021 +0200
+++ b/LICENSE.md	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 libbuf ISC LICENSE
 ==================
 
-Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/Makefile	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 #
 # Makefile -- simple string buffer for C
 #
-# Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+# Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf.h	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.h -- simple string buffer for C
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_clear.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_clear.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_CLEAR 3
 .Os
 .\" NAME
--- a/buf_dup.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_dup.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_dup.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_DUP 3
 .Os
 .\" NAME
--- a/buf_erase.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_erase.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_erase.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_ERASE 3
 .Os
 .\" NAME
--- a/buf_finish.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_finish.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_finish.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_FINISH 3
 .Os
 .\" NAME
--- a/buf_init.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_init.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_init.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_INIT 3
 .Os
 .\" NAME
--- a/buf_printf.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_printf.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_printf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_PRINTF 3
 .Os
 .\" NAME
--- a/buf_putc.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_putc.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_putc.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_PUTC 3
 .Os
 .\" NAME
--- a/buf_puts.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_puts.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_puts.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_PUTS 3
 .Os
 .\" NAME
--- a/buf_reserve.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_reserve.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_reserve.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_RESERVE 3
 .Os
 .\" NAME
--- a/buf_resize.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_resize.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_resize.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_RESIZE 3
 .Os
 .\" NAME
--- a/buf_shrink.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_shrink.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_shrink.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_SHRINK 3
 .Os
 .\" NAME
--- a/buf_sub.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_sub.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_sub.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_SUB 3
 .Os
 .\" NAME
--- a/buf_vprintf.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/buf_vprintf.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_vprintf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt BUF_VPRINTF 3
 .Os
 .\" NAME
--- a/libbuf.3	Sat Jun 26 21:38:20 2021 +0200
+++ b/libbuf.3	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" libbuf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2022 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-2021
+.Dd October 29, 2019-2022
 .Dt LIBBUF 3
 .Os
 .\" NAME
--- a/test/test-clear.c	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-clear.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-clear.c -- test buf_clear function
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-dup.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-dup.c -- test buf_dup
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-erase.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-erase.c -- test buf_erase
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-finish.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-finish.c -- test buf_finish
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-init.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-init.c -- test buf_init
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-printf.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-printf.c -- test buf_printf
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-putc.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-putc.c -- test buf_putc
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-puts.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-puts.c -- test buf_puts
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-reserve.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-reserve.c -- test buf_reserve
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-resize.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-resize.c -- test buf_resize
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-shrink.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-shrink.c -- test buf_shrink
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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	Sat Jun 26 21:38:20 2021 +0200
+++ b/test/test-sub.c	Sun Jan 02 10:15:18 2022 +0100
@@ -1,7 +1,7 @@
 /*
  * test-sub.c -- test buf_sub
  *
- * Copyright (c) 2019-2021 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2022 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