changeset 34:5493466d6e56

misc: update copyright years
author David Demelier <markand@malikania.fr>
date Wed, 01 Feb 2023 13:00:51 +0100
parents a4637d608c7a
children 44f1392dd105
files CMakeLists.txt 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 31 files changed, 31 insertions(+), 31 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Mon Mar 28 21:27:06 2022 +0200
+++ b/CMakeLists.txt	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- basic CMake build for libbuf
 #
-# Copyright (c) 2013-2022 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2023 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/LICENSE.md	Mon Mar 28 21:27:06 2022 +0200
+++ b/LICENSE.md	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 libbuf ISC LICENSE
 ==================
 
-Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/Makefile	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 #
 # Makefile -- simple string buffer for C
 #
-# Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+# Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf.h	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.h -- simple string buffer for C
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_clear.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_clear.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_dup.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_dup.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_erase.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_erase.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_finish.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_finish.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_init.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_init.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_printf.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_printf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_putc.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_putc.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_puts.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_puts.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_reserve.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_reserve.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_resize.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_resize.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_shrink.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_shrink.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_sub.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_sub.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/buf_vprintf.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_vprintf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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/libbuf.3	Mon Mar 28 21:27:06 2022 +0200
+++ b/libbuf.3	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" libbuf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2023 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-clear.c	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-clear.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-clear.c -- test buf_clear function
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-dup.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-dup.c -- test buf_dup
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-erase.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-erase.c -- test buf_erase
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-finish.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-finish.c -- test buf_finish
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-init.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-init.c -- test buf_init
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-printf.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-printf.c -- test buf_printf
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-putc.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-putc.c -- test buf_putc
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-puts.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-puts.c -- test buf_puts
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-reserve.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-reserve.c -- test buf_reserve
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-resize.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-resize.c -- test buf_resize
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-shrink.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-shrink.c -- test buf_shrink
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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	Mon Mar 28 21:27:06 2022 +0200
+++ b/test/test-sub.c	Wed Feb 01 13:00:51 2023 +0100
@@ -1,7 +1,7 @@
 /*
  * test-sub.c -- test buf_sub
  *
- * Copyright (c) 2019-2022 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2023 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