From 4bea2f3638c9f4f3a5402350cc2bee919b7e4824 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 1 Jan 2016 17:39:24 +0100 Subject: bump year MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/string/basename_gnu.c | 2 +- src/string/mem/memcasecmp.c | 2 +- src/string/mem/memcasemem.c | 2 +- src/string/mem/memccpy.c | 2 +- src/string/mem/memchr.c | 2 +- src/string/mem/memcmove.c | 2 +- src/string/mem/memcmp.c | 2 +- src/string/mem/memcpy.c | 2 +- src/string/mem/memdup.c | 2 +- src/string/mem/memmem.c | 2 +- src/string/mem/memmove.c | 2 +- src/string/mem/mempcpy.c | 2 +- src/string/mem/mempmove.c | 2 +- src/string/mem/memrchr.c | 2 +- src/string/mem/memset.c | 2 +- src/string/mem/rawmemchr.c | 2 +- src/string/mem/substring.h | 2 +- src/string/memfrob.c | 2 +- src/string/new.c | 2 +- src/string/str/rawstrcasestr.c | 2 +- src/string/str/rawstrstr.c | 2 +- src/string/str/stpcpy.c | 2 +- src/string/str/stpmove.c | 2 +- src/string/str/strcasecmp.c | 2 +- src/string/str/strcaseends.c | 2 +- src/string/str/strcasestarts.c | 2 +- src/string/str/strcasestr.c | 2 +- src/string/str/strcat.c | 2 +- src/string/str/strccpy.c | 2 +- src/string/str/strchr.c | 2 +- src/string/str/strchrnul.c | 2 +- src/string/str/strcmove.c | 2 +- src/string/str/strcmp.c | 2 +- src/string/str/strcpy.c | 2 +- src/string/str/strcspn.c | 2 +- src/string/str/strdup.c | 2 +- src/string/str/strends.c | 2 +- src/string/str/strlen.c | 2 +- src/string/str/strmove.c | 2 +- src/string/str/strpbrk.c | 2 +- src/string/str/strrchr.c | 2 +- src/string/str/strsep.c | 2 +- src/string/str/strset.c | 2 +- src/string/str/strspn.c | 2 +- src/string/str/strstarts.c | 2 +- src/string/str/strstr.c | 2 +- src/string/str/strstrcpy.c | 2 +- src/string/str/strstrmove.c | 2 +- src/string/str/strtok.c | 2 +- src/string/str/strtok_r.c | 2 +- src/string/strerror/strerror.c | 2 +- src/string/strerror/strerror_l.c | 2 +- src/string/strerror/strerror_r_gnu.c | 2 +- src/string/strerror/strerror_r_xsi.c | 2 +- src/string/strfry.c | 2 +- src/string/strn/stpncpy.c | 2 +- src/string/strn/stpnmove.c | 2 +- src/string/strn/strcncpy.c | 2 +- src/string/strn/strcnmove.c | 2 +- src/string/strn/strncasecmp.c | 2 +- src/string/strn/strncasestr.c | 2 +- src/string/strn/strncat.c | 2 +- src/string/strn/strncmp.c | 2 +- src/string/strn/strncpy.c | 2 +- src/string/strn/strndup.c | 2 +- src/string/strn/strnlen.c | 2 +- src/string/strn/strnmove.c | 2 +- src/string/strn/strnstr.c | 2 +- src/string/strn/strstrncpy.c | 2 +- src/string/strn/strstrnmove.c | 2 +- 70 files changed, 70 insertions(+), 70 deletions(-) (limited to 'src/string') diff --git a/src/string/basename_gnu.c b/src/string/basename_gnu.c index c25fb1e..d8ccae8 100644 --- a/src/string/basename_gnu.c +++ b/src/string/basename_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/mem/memcasecmp.c b/src/string/mem/memcasecmp.c index 816c954..722af6a 100644 --- a/src/string/mem/memcasecmp.c +++ b/src/string/mem/memcasecmp.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/mem/memcasemem.c b/src/string/mem/memcasemem.c index b15daea..500e0d8 100644 --- a/src/string/mem/memcasemem.c +++ b/src/string/mem/memcasemem.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/mem/memccpy.c b/src/string/mem/memccpy.c index f5c669e..fbc421e 100644 --- a/src/string/mem/memccpy.c +++ b/src/string/mem/memccpy.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/mem/memchr.c b/src/string/mem/memchr.c index 06c82a8..14986a6 100644 --- a/src/string/mem/memchr.c +++ b/src/string/mem/memchr.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/mem/memcmove.c b/src/string/mem/memcmove.c index c1cf8ae..40d24ce 100644 --- a/src/string/mem/memcmove.c +++ b/src/string/mem/memcmove.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/mem/memcmp.c b/src/string/mem/memcmp.c index 1de506d..71a3cd1 100644 --- a/src/string/mem/memcmp.c +++ b/src/string/mem/memcmp.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/mem/memcpy.c b/src/string/mem/memcpy.c index ccf716b..546e6c8 100644 --- a/src/string/mem/memcpy.c +++ b/src/string/mem/memcpy.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/mem/memdup.c b/src/string/mem/memdup.c index 3e3be99..424462e 100644 --- a/src/string/mem/memdup.c +++ b/src/string/mem/memdup.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/mem/memmem.c b/src/string/mem/memmem.c index 71d1f4d..8d9c053 100644 --- a/src/string/mem/memmem.c +++ b/src/string/mem/memmem.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/mem/memmove.c b/src/string/mem/memmove.c index 00ee9c1..409a743 100644 --- a/src/string/mem/memmove.c +++ b/src/string/mem/memmove.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/mem/mempcpy.c b/src/string/mem/mempcpy.c index 97b81f1..e078a45 100644 --- a/src/string/mem/mempcpy.c +++ b/src/string/mem/mempcpy.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/mem/mempmove.c b/src/string/mem/mempmove.c index 415e38b..7f26e9b 100644 --- a/src/string/mem/mempmove.c +++ b/src/string/mem/mempmove.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/mem/memrchr.c b/src/string/mem/memrchr.c index 2781a71..2f382c5 100644 --- a/src/string/mem/memrchr.c +++ b/src/string/mem/memrchr.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/mem/memset.c b/src/string/mem/memset.c index 047620b..8db0b84 100644 --- a/src/string/mem/memset.c +++ b/src/string/mem/memset.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/mem/rawmemchr.c b/src/string/mem/rawmemchr.c index afaae48..b8c6739 100644 --- a/src/string/mem/rawmemchr.c +++ b/src/string/mem/rawmemchr.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/mem/substring.h b/src/string/mem/substring.h index 0063094..93f2bfb 100644 --- a/src/string/mem/substring.h +++ b/src/string/mem/substring.h @@ -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/memfrob.c b/src/string/memfrob.c index 77c2e40..2b94184 100644 --- a/src/string/memfrob.c +++ b/src/string/memfrob.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/new.c b/src/string/new.c index 6c416db..83ffe4d 100644 --- a/src/string/new.c +++ b/src/string/new.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/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 -- cgit v1.2.3-70-g09d2