changeset 628:b327391f6a62

Misc: update copyrights
author David Demelier <markand@malikania.fr>
date Wed, 03 Jan 2018 09:13:20 +0100
parents b1bfc23d33fe
children 3a4107730b24
files CMakeLists.txt c/asprintf/asprintf.c c/asprintf/asprintf.h c/err/err.c c/err/err.h c/extern/strlcat.c c/extern/strlcpy.c c/setprogname/setprogname.c c/setprogname/setprogname.h c/strdup/strdup.c c/strdup/strdup.h c/strndup/strndup.c c/strndup/strndup.h c/strsep/strsep.c c/strsep/strsep.h cpp/CMakeLists.txt cpp/converter/converter.cpp cpp/converter/converter.h cpp/executable/CMakeLists.txt cpp/executable/executable.cpp cpp/executable/executable.hpp cpp/executable/test/main.cpp cpp/is_boolean/CMakeLists.txt cpp/is_boolean/is_boolean.hpp cpp/is_boolean/test/main.cpp cpp/is_number/CMakeLists.txt cpp/is_number/is_number.hpp cpp/is_number/test/main.cpp cpp/join/CMakeLists.txt cpp/join/join.hpp cpp/join/test/main.cpp cpp/options/CMakeLists.txt cpp/options/options.cpp cpp/options/options.hpp cpp/options/test/main.cpp cpp/to_int/CMakeLists.txt cpp/to_int/test/main.cpp cpp/to_int/to_int.hpp
diffstat 38 files changed, 41 insertions(+), 41 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2018 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/c/asprintf/asprintf.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/asprintf/asprintf.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * asprintf.c -- basic port of asprintf / vsprintf functions
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/asprintf/asprintf.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/asprintf/asprintf.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * asprintf.h -- basic port of asprintf / vsprintf functions
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/err/err.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/err/err.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * err.c -- formtted error messages (portable version)
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/err/err.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/err/err.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * err.h -- formtted error messages (portable version)
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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
@@ -31,7 +31,7 @@
 #   define ERR_NORETURN __declspec(noreturn)
 #endif
 
-void 
+void
 err(int, const char *, ...) ERR_NORETURN;
 
 void
--- a/c/extern/strlcat.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/extern/strlcat.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
- * Copyright (c) 2012-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2012-2018 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/c/extern/strlcpy.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/extern/strlcpy.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
- * Copyright (c) 2012-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2012-2018 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/c/setprogname/setprogname.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/setprogname/setprogname.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * setprogname.c -- get or set the program name
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/setprogname/setprogname.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/setprogname/setprogname.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * setprogname.h -- get or set the program name
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/strdup/strdup.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/strdup/strdup.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * strdup.c -- duplicate a string
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/strdup/strdup.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/strdup/strdup.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * strdup.h -- duplicate a string
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/strndup/strndup.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/strndup/strndup.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * strndup.c -- duplicate a string
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/strndup/strndup.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/strndup/strndup.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * strndup.h -- duplicate a string
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/strsep/strsep.c	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/strsep/strsep.c	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * strsep.c -- separate a string by delimiters
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/c/strsep/strsep.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/c/strsep/strsep.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * strsep.h -- separate a string by delimiters
  *
- * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2018 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/cpp/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,6 +1,7 @@
+#
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2018 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/cpp/converter/converter.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/converter/converter.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * Converter.cpp -- iconv based converter
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2018 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/cpp/converter/converter.h	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/converter/converter.h	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * converter.h -- iconv based converter
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2018 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/cpp/executable/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/executable/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2016-2018 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/cpp/executable/executable.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/executable/executable.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * executable.cpp -- get executable path
  *
- * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2018 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/cpp/executable/executable.hpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/executable/executable.hpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * executable.hpp -- get executable path
  *
- * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2018 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/cpp/executable/test/main.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/executable/test/main.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * main.cpp -- test executable_path function
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2018 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/cpp/is_boolean/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/is_boolean/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2016-2018 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
@@ -20,4 +20,3 @@
     NAME is-boolean
     SOURCES is_boolean.hpp
 )
-
--- a/cpp/is_boolean/is_boolean.hpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/is_boolean/is_boolean.hpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * is_number.hpp -- check if string is a boolean
  *
- * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2018 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/cpp/is_boolean/test/main.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/is_boolean/test/main.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * main.cpp -- test is_boolean functions
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2018 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/cpp/is_number/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/is_number/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2016-2018 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/cpp/is_number/is_number.hpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/is_number/is_number.hpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * is_number.hpp -- check if string is a number
  *
- * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2018 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/cpp/is_number/test/main.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/is_number/test/main.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * main.cpp -- test is_number functions
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2018 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/cpp/join/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/join/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2018 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/cpp/join/join.hpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/join/join.hpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * join.hpp -- join lists into a string
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2018 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/cpp/join/test/main.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/join/test/main.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * main.cpp -- test join function
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2018 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/cpp/options/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/options/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- options module
 #
-# Copyright (c) 2013-2015 David Demelier <markand@malikania.fr>
+# Copyright (c) 2015-2018 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/cpp/options/options.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/options/options.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * options.cpp -- parse Unix command line options
  *
- * Copyright (c) 2015-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2015-2018 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/cpp/options/options.hpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/options/options.hpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * options.hpp -- parse Unix command line options
  *
- * Copyright (c) 2015-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2015-2018 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/cpp/options/test/main.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/options/test/main.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
- * main.cpp -- main test file for OptionParser
+ * main.cpp -- main test file for options
  *
- * Copyright (c) 2013-2015 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2015-2018 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/cpp/to_int/CMakeLists.txt	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/to_int/CMakeLists.txt	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+# Copyright (c) 2017-2018 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/cpp/to_int/test/main.cpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/to_int/test/main.cpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * main.cpp -- test to_int functions
  *
- * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2017-2018 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/cpp/to_int/to_int.hpp	Thu Oct 26 14:55:44 2017 +0200
+++ b/cpp/to_int/to_int.hpp	Wed Jan 03 09:13:20 2018 +0100
@@ -1,7 +1,7 @@
 /*
  * to_int.hpp -- safely convert string to integers
  *
- * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2017-2018 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