aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/str
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/string/str/rawstrcasestr.c2
-rw-r--r--src/string/str/rawstrstr.c2
-rw-r--r--src/string/str/stpcpy.c2
-rw-r--r--src/string/str/stpmove.c2
-rw-r--r--src/string/str/strcasecmp.c2
-rw-r--r--src/string/str/strcaseends.c2
-rw-r--r--src/string/str/strcasestarts.c2
-rw-r--r--src/string/str/strcasestr.c2
-rw-r--r--src/string/str/strcat.c2
-rw-r--r--src/string/str/strccpy.c2
-rw-r--r--src/string/str/strchr.c2
-rw-r--r--src/string/str/strchrnul.c2
-rw-r--r--src/string/str/strcmove.c2
-rw-r--r--src/string/str/strcmp.c2
-rw-r--r--src/string/str/strcpy.c2
-rw-r--r--src/string/str/strcspn.c2
-rw-r--r--src/string/str/strdup.c2
-rw-r--r--src/string/str/strends.c2
-rw-r--r--src/string/str/strlen.c2
-rw-r--r--src/string/str/strmove.c2
-rw-r--r--src/string/str/strpbrk.c2
-rw-r--r--src/string/str/strrchr.c2
-rw-r--r--src/string/str/strsep.c2
-rw-r--r--src/string/str/strset.c2
-rw-r--r--src/string/str/strspn.c2
-rw-r--r--src/string/str/strstarts.c2
-rw-r--r--src/string/str/strstr.c2
-rw-r--r--src/string/str/strstrcpy.c2
-rw-r--r--src/string/str/strstrmove.c2
-rw-r--r--src/string/str/strtok.c2
-rw-r--r--src/string/str/strtok_r.c2
-rw-r--r--src/string/strerror/strerror.c2
-rw-r--r--src/string/strerror/strerror_l.c2
-rw-r--r--src/string/strerror/strerror_r_gnu.c2
-rw-r--r--src/string/strerror/strerror_r_xsi.c2
-rw-r--r--src/string/strfry.c2
-rw-r--r--src/string/strn/stpncpy.c2
-rw-r--r--src/string/strn/stpnmove.c2
-rw-r--r--src/string/strn/strcncpy.c2
-rw-r--r--src/string/strn/strcnmove.c2
-rw-r--r--src/string/strn/strncasecmp.c2
-rw-r--r--src/string/strn/strncasestr.c2
-rw-r--r--src/string/strn/strncat.c2
-rw-r--r--src/string/strn/strncmp.c2
-rw-r--r--src/string/strn/strncpy.c2
-rw-r--r--src/string/strn/strndup.c2
-rw-r--r--src/string/strn/strnlen.c2
-rw-r--r--src/string/strn/strnmove.c2
-rw-r--r--src/string/strn/strnstr.c2
-rw-r--r--src/string/strn/strstrncpy.c2
-rw-r--r--src/string/strn/strstrnmove.c2
51 files changed, 51 insertions, 51 deletions
diff --git a/src/string/str/rawstrcasestr.c b/src/string/str/rawstrcasestr.c
index bae8c38..f017c82 100644
--- a/src/string/str/rawstrcasestr.c
+++ b/src/string/str/rawstrcasestr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/rawstrstr.c b/src/string/str/rawstrstr.c
index e733583..72c29b5 100644
--- a/src/string/str/rawstrstr.c
+++ b/src/string/str/rawstrstr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/stpcpy.c b/src/string/str/stpcpy.c
index c643d77..2eb847e 100644
--- a/src/string/str/stpcpy.c
+++ b/src/string/str/stpcpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/stpmove.c b/src/string/str/stpmove.c
index 56ddd24..aae3f72 100644
--- a/src/string/str/stpmove.c
+++ b/src/string/str/stpmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcasecmp.c b/src/string/str/strcasecmp.c
index f2d6e83..ae84446 100644
--- a/src/string/str/strcasecmp.c
+++ b/src/string/str/strcasecmp.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcaseends.c b/src/string/str/strcaseends.c
index bc7d765..c11302f 100644
--- a/src/string/str/strcaseends.c
+++ b/src/string/str/strcaseends.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcasestarts.c b/src/string/str/strcasestarts.c
index e014080..b018077 100644
--- a/src/string/str/strcasestarts.c
+++ b/src/string/str/strcasestarts.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcasestr.c b/src/string/str/strcasestr.c
index 0ac4368..a5ea46a 100644
--- a/src/string/str/strcasestr.c
+++ b/src/string/str/strcasestr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcat.c b/src/string/str/strcat.c
index ec3cbe7..7744eec 100644
--- a/src/string/str/strcat.c
+++ b/src/string/str/strcat.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strccpy.c b/src/string/str/strccpy.c
index 14b179b..0403718 100644
--- a/src/string/str/strccpy.c
+++ b/src/string/str/strccpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strchr.c b/src/string/str/strchr.c
index 8226726..ddc01d9 100644
--- a/src/string/str/strchr.c
+++ b/src/string/str/strchr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strchrnul.c b/src/string/str/strchrnul.c
index 72ae9bc..2f37b7d 100644
--- a/src/string/str/strchrnul.c
+++ b/src/string/str/strchrnul.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcmove.c b/src/string/str/strcmove.c
index b2f877f..cb5862f 100644
--- a/src/string/str/strcmove.c
+++ b/src/string/str/strcmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcmp.c b/src/string/str/strcmp.c
index cf9426d..a3dfa87 100644
--- a/src/string/str/strcmp.c
+++ b/src/string/str/strcmp.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcpy.c b/src/string/str/strcpy.c
index d0fcd76..d90cbe6 100644
--- a/src/string/str/strcpy.c
+++ b/src/string/str/strcpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strcspn.c b/src/string/str/strcspn.c
index 32cb530..3d20784 100644
--- a/src/string/str/strcspn.c
+++ b/src/string/str/strcspn.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strdup.c b/src/string/str/strdup.c
index 50ba069..6670ee9 100644
--- a/src/string/str/strdup.c
+++ b/src/string/str/strdup.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strends.c b/src/string/str/strends.c
index 336106f..e7fb7cc 100644
--- a/src/string/str/strends.c
+++ b/src/string/str/strends.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strlen.c b/src/string/str/strlen.c
index 16b7977..b195739 100644
--- a/src/string/str/strlen.c
+++ b/src/string/str/strlen.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strmove.c b/src/string/str/strmove.c
index 892b852..18deaee 100644
--- a/src/string/str/strmove.c
+++ b/src/string/str/strmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strpbrk.c b/src/string/str/strpbrk.c
index ce5b7c6..4d96256 100644
--- a/src/string/str/strpbrk.c
+++ b/src/string/str/strpbrk.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strrchr.c b/src/string/str/strrchr.c
index 1933765..8904cd8 100644
--- a/src/string/str/strrchr.c
+++ b/src/string/str/strrchr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strsep.c b/src/string/str/strsep.c
index c51e47f..e7877f3 100644
--- a/src/string/str/strsep.c
+++ b/src/string/str/strsep.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strset.c b/src/string/str/strset.c
index a1ff63f..34fa44f 100644
--- a/src/string/str/strset.c
+++ b/src/string/str/strset.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strspn.c b/src/string/str/strspn.c
index 8a648ff..c36ac2d 100644
--- a/src/string/str/strspn.c
+++ b/src/string/str/strspn.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strstarts.c b/src/string/str/strstarts.c
index 04ed7ad..a6f3168 100644
--- a/src/string/str/strstarts.c
+++ b/src/string/str/strstarts.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strstr.c b/src/string/str/strstr.c
index 9f88cb4..b9a4337 100644
--- a/src/string/str/strstr.c
+++ b/src/string/str/strstr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strstrcpy.c b/src/string/str/strstrcpy.c
index bd4c5a6..12a574a 100644
--- a/src/string/str/strstrcpy.c
+++ b/src/string/str/strstrcpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strstrmove.c b/src/string/str/strstrmove.c
index 686b0bd..40b5aa8 100644
--- a/src/string/str/strstrmove.c
+++ b/src/string/str/strstrmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strtok.c b/src/string/str/strtok.c
index a856967..18f9e73 100644
--- a/src/string/str/strtok.c
+++ b/src/string/str/strtok.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/str/strtok_r.c b/src/string/str/strtok_r.c
index e29e11b..0778d22 100644
--- a/src/string/str/strtok_r.c
+++ b/src/string/str/strtok_r.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strerror/strerror.c b/src/string/strerror/strerror.c
index 75af8bd..61766b3 100644
--- a/src/string/strerror/strerror.c
+++ b/src/string/strerror/strerror.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strerror/strerror_l.c b/src/string/strerror/strerror_l.c
index 0493d9f..a23ab0d 100644
--- a/src/string/strerror/strerror_l.c
+++ b/src/string/strerror/strerror_l.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strerror/strerror_r_gnu.c b/src/string/strerror/strerror_r_gnu.c
index 539866a..be5d005 100644
--- a/src/string/strerror/strerror_r_gnu.c
+++ b/src/string/strerror/strerror_r_gnu.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strerror/strerror_r_xsi.c b/src/string/strerror/strerror_r_xsi.c
index 028226e..1dd705c 100644
--- a/src/string/strerror/strerror_r_xsi.c
+++ b/src/string/strerror/strerror_r_xsi.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strfry.c b/src/string/strfry.c
index bced7ce..8463947 100644
--- a/src/string/strfry.c
+++ b/src/string/strfry.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/stpncpy.c b/src/string/strn/stpncpy.c
index 561adc3..e44565c 100644
--- a/src/string/strn/stpncpy.c
+++ b/src/string/strn/stpncpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/stpnmove.c b/src/string/strn/stpnmove.c
index e410b49..db47081 100644
--- a/src/string/strn/stpnmove.c
+++ b/src/string/strn/stpnmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strcncpy.c b/src/string/strn/strcncpy.c
index fb244b1..bdaaa78 100644
--- a/src/string/strn/strcncpy.c
+++ b/src/string/strn/strcncpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strcnmove.c b/src/string/strn/strcnmove.c
index f039959..b0f87d8 100644
--- a/src/string/strn/strcnmove.c
+++ b/src/string/strn/strcnmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strncasecmp.c b/src/string/strn/strncasecmp.c
index d5fa666..36486c7 100644
--- a/src/string/strn/strncasecmp.c
+++ b/src/string/strn/strncasecmp.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strncasestr.c b/src/string/strn/strncasestr.c
index c74d590..68b7ecd 100644
--- a/src/string/strn/strncasestr.c
+++ b/src/string/strn/strncasestr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strncat.c b/src/string/strn/strncat.c
index 1d6d35b..7fe2188 100644
--- a/src/string/strn/strncat.c
+++ b/src/string/strn/strncat.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strncmp.c b/src/string/strn/strncmp.c
index 08bf5c1..9901605 100644
--- a/src/string/strn/strncmp.c
+++ b/src/string/strn/strncmp.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strncpy.c b/src/string/strn/strncpy.c
index 199ca9c..df69b2f 100644
--- a/src/string/strn/strncpy.c
+++ b/src/string/strn/strncpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strndup.c b/src/string/strn/strndup.c
index 51aa2bb..7d6e565 100644
--- a/src/string/strn/strndup.c
+++ b/src/string/strn/strndup.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strnlen.c b/src/string/strn/strnlen.c
index 2d45e68..b71550a 100644
--- a/src/string/strn/strnlen.c
+++ b/src/string/strn/strnlen.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strnmove.c b/src/string/strn/strnmove.c
index dc159db..b8b0398 100644
--- a/src/string/strn/strnmove.c
+++ b/src/string/strn/strnmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strnstr.c b/src/string/strn/strnstr.c
index e581116..b73a5fa 100644
--- a/src/string/strn/strnstr.c
+++ b/src/string/strn/strnstr.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strstrncpy.c b/src/string/strn/strstrncpy.c
index 822c4c6..bbbadf6 100644
--- a/src/string/strn/strstrncpy.c
+++ b/src/string/strn/strstrncpy.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/src/string/strn/strstrnmove.c b/src/string/strn/strstrnmove.c
index aadb1a9..1b57cb2 100644
--- a/src/string/strn/strstrnmove.c
+++ b/src/string/strn/strstrnmove.c
@@ -1,6 +1,6 @@
/**
* slibc — Yet another C library
- * Copyright © 2015 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by