changeset 37:ab071d485d38 default tip @

misc: update copyright years
author David Demelier <markand@malikania.fr>
date Thu, 04 Jan 2024 10:42:26 +0100
parents 0a3e0a53da3e
children
files CMakeLists.txt LICENSE.md 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 tests/test-clear.c tests/test-dup.c tests/test-erase.c tests/test-finish.c tests/test-init.c tests/test-printf.c tests/test-putc.c tests/test-puts.c tests/test-reserve.c tests/test-resize.c tests/test-shrink.c tests/test-sub.c
diffstat 30 files changed, 30 insertions(+), 30 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Sat Aug 19 10:43:05 2023 +0200
+++ b/CMakeLists.txt	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- basic CMake build for libbuf
 #
-# Copyright (c) 2013-2023 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/LICENSE.md	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 libbuf ISC LICENSE
 ==================
 
-Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+Copyright (c) 2019-2024 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 Aug 19 10:43:05 2023 +0200
+++ b/buf.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.c -- simple string buffer for C
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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 Aug 19 10:43:05 2023 +0200
+++ b/buf.h	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * buf.h -- simple string buffer for C
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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 Aug 19 10:43:05 2023 +0200
+++ b/buf_clear.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_clear.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_dup.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_dup.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_erase.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_erase.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_finish.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_finish.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_init.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_init.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_printf.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_printf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_putc.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_putc.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_puts.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_puts.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_reserve.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_reserve.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_resize.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_resize.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_shrink.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_shrink.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_sub.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_sub.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/buf_vprintf.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" buf_vprintf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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	Sat Aug 19 10:43:05 2023 +0200
+++ b/libbuf.3	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 .\"
 .\" libbuf.3 -- simple string buffer for C
 .\"
-.\" Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+.\" Copyright (c) 2019-2024 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/tests/test-clear.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-clear.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-clear.c -- test buf_clear function
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-dup.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-dup.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-dup.c -- test buf_dup
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-erase.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-erase.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-erase.c -- test buf_erase
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-finish.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-finish.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-finish.c -- test buf_finish
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-init.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-init.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-init.c -- test buf_init
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-printf.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-printf.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-printf.c -- test buf_printf
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-putc.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-putc.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-putc.c -- test buf_putc
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-puts.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-puts.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-puts.c -- test buf_puts
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-reserve.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-reserve.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-reserve.c -- test buf_reserve
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-resize.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-resize.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-resize.c -- test buf_resize
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-shrink.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-shrink.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-shrink.c -- test buf_shrink
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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/tests/test-sub.c	Sat Aug 19 10:43:05 2023 +0200
+++ b/tests/test-sub.c	Thu Jan 04 10:42:26 2024 +0100
@@ -1,7 +1,7 @@
 /*
  * test-sub.c -- test buf_sub
  *
- * Copyright (c) 2019-2023 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2019-2024 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