From a154fb3467c8a1e46e4dc03cf86c26b22d4021af Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 6 Oct 2024 09:15:45 +0200 Subject: Update e-mail 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 d8ccae8..7d3fad6 100644 --- a/src/string/basename_gnu.c +++ b/src/string/basename_gnu.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 722af6a..2a11973 100644 --- a/src/string/mem/memcasecmp.c +++ b/src/string/mem/memcasecmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 500e0d8..1591c7c 100644 --- a/src/string/mem/memcasemem.c +++ b/src/string/mem/memcasemem.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 fbc421e..0722a49 100644 --- a/src/string/mem/memccpy.c +++ b/src/string/mem/memccpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 14986a6..1f706d8 100644 --- a/src/string/mem/memchr.c +++ b/src/string/mem/memchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 40d24ce..ac7d9b6 100644 --- a/src/string/mem/memcmove.c +++ b/src/string/mem/memcmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 3f32762..89530da 100644 --- a/src/string/mem/memcmp.c +++ b/src/string/mem/memcmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 546e6c8..8a5cb4c 100644 --- a/src/string/mem/memcpy.c +++ b/src/string/mem/memcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 424462e..73eda85 100644 --- a/src/string/mem/memdup.c +++ b/src/string/mem/memdup.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 8d9c053..ade40dd 100644 --- a/src/string/mem/memmem.c +++ b/src/string/mem/memmem.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 409a743..e5d53e2 100644 --- a/src/string/mem/memmove.c +++ b/src/string/mem/memmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 e078a45..2b9f1f5 100644 --- a/src/string/mem/mempcpy.c +++ b/src/string/mem/mempcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 7f26e9b..648e4d9 100644 --- a/src/string/mem/mempmove.c +++ b/src/string/mem/mempmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 2f382c5..dd08d14 100644 --- a/src/string/mem/memrchr.c +++ b/src/string/mem/memrchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 8db0b84..637aae0 100644 --- a/src/string/mem/memset.c +++ b/src/string/mem/memset.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b8c6739..607dbbe 100644 --- a/src/string/mem/rawmemchr.c +++ b/src/string/mem/rawmemchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 93f2bfb..b9ab49e 100644 --- a/src/string/mem/substring.h +++ b/src/string/mem/substring.h @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 2b94184..1d78099 100644 --- a/src/string/memfrob.c +++ b/src/string/memfrob.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 83ffe4d..51b564a 100644 --- a/src/string/new.c +++ b/src/string/new.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 f017c82..c79de2d 100644 --- a/src/string/str/rawstrcasestr.c +++ b/src/string/str/rawstrcasestr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 72c29b5..b9cf669 100644 --- a/src/string/str/rawstrstr.c +++ b/src/string/str/rawstrstr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 2eb847e..4b2e94f 100644 --- a/src/string/str/stpcpy.c +++ b/src/string/str/stpcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 aae3f72..639a765 100644 --- a/src/string/str/stpmove.c +++ b/src/string/str/stpmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 ae84446..16a3a46 100644 --- a/src/string/str/strcasecmp.c +++ b/src/string/str/strcasecmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 c11302f..de6edef 100644 --- a/src/string/str/strcaseends.c +++ b/src/string/str/strcaseends.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b018077..86ac778 100644 --- a/src/string/str/strcasestarts.c +++ b/src/string/str/strcasestarts.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 a5ea46a..1d58c82 100644 --- a/src/string/str/strcasestr.c +++ b/src/string/str/strcasestr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 7744eec..5b15ced 100644 --- a/src/string/str/strcat.c +++ b/src/string/str/strcat.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 0403718..506c3c5 100644 --- a/src/string/str/strccpy.c +++ b/src/string/str/strccpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 ddc01d9..3b1199c 100644 --- a/src/string/str/strchr.c +++ b/src/string/str/strchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 2f37b7d..5d0a2e3 100644 --- a/src/string/str/strchrnul.c +++ b/src/string/str/strchrnul.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 cb5862f..d931c83 100644 --- a/src/string/str/strcmove.c +++ b/src/string/str/strcmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 a3dfa87..f8d4e2a 100644 --- a/src/string/str/strcmp.c +++ b/src/string/str/strcmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 d90cbe6..3cdd9a9 100644 --- a/src/string/str/strcpy.c +++ b/src/string/str/strcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 3d20784..4c6eb57 100644 --- a/src/string/str/strcspn.c +++ b/src/string/str/strcspn.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 9b428b4..2264313 100644 --- a/src/string/str/strdup.c +++ b/src/string/str/strdup.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 e7fb7cc..8618246 100644 --- a/src/string/str/strends.c +++ b/src/string/str/strends.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b195739..ab07a6a 100644 --- a/src/string/str/strlen.c +++ b/src/string/str/strlen.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 18deaee..e82a827 100644 --- a/src/string/str/strmove.c +++ b/src/string/str/strmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 4d96256..9850343 100644 --- a/src/string/str/strpbrk.c +++ b/src/string/str/strpbrk.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 8904cd8..8f45303 100644 --- a/src/string/str/strrchr.c +++ b/src/string/str/strrchr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 e7877f3..d3352a2 100644 --- a/src/string/str/strsep.c +++ b/src/string/str/strsep.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 34fa44f..5126da9 100644 --- a/src/string/str/strset.c +++ b/src/string/str/strset.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 c36ac2d..6b428a7 100644 --- a/src/string/str/strspn.c +++ b/src/string/str/strspn.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 a6f3168..991bcb4 100644 --- a/src/string/str/strstarts.c +++ b/src/string/str/strstarts.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b9a4337..e82bc00 100644 --- a/src/string/str/strstr.c +++ b/src/string/str/strstr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 12a574a..69652e0 100644 --- a/src/string/str/strstrcpy.c +++ b/src/string/str/strstrcpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 40b5aa8..6670877 100644 --- a/src/string/str/strstrmove.c +++ b/src/string/str/strstrmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 18f9e73..94088e1 100644 --- a/src/string/str/strtok.c +++ b/src/string/str/strtok.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 0778d22..a7f0e6f 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, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 61766b3..b547d90 100644 --- a/src/string/strerror/strerror.c +++ b/src/string/strerror/strerror.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 a23ab0d..613dac8 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, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 be5d005..ac45083 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, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 1dd705c..81e0382 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, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 bf56f39..4434aaa 100644 --- a/src/string/strfry.c +++ b/src/string/strfry.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 e44565c..7e246ac 100644 --- a/src/string/strn/stpncpy.c +++ b/src/string/strn/stpncpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 db47081..9010949 100644 --- a/src/string/strn/stpnmove.c +++ b/src/string/strn/stpnmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 bdaaa78..89243fe 100644 --- a/src/string/strn/strcncpy.c +++ b/src/string/strn/strcncpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b0f87d8..1bc1d08 100644 --- a/src/string/strn/strcnmove.c +++ b/src/string/strn/strcnmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 36486c7..c5f0929 100644 --- a/src/string/strn/strncasecmp.c +++ b/src/string/strn/strncasecmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 68b7ecd..839c284 100644 --- a/src/string/strn/strncasestr.c +++ b/src/string/strn/strncasestr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 7fe2188..960f5e6 100644 --- a/src/string/strn/strncat.c +++ b/src/string/strn/strncat.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 9901605..7c58e6a 100644 --- a/src/string/strn/strncmp.c +++ b/src/string/strn/strncmp.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 df69b2f..bbf2ee8 100644 --- a/src/string/strn/strncpy.c +++ b/src/string/strn/strncpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 5dc17e0..9a36068 100644 --- a/src/string/strn/strndup.c +++ b/src/string/strn/strndup.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b71550a..8eb5387 100644 --- a/src/string/strn/strnlen.c +++ b/src/string/strn/strnlen.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b8b0398..8a7bba8 100644 --- a/src/string/strn/strnmove.c +++ b/src/string/strn/strnmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 b73a5fa..7922ce8 100644 --- a/src/string/strn/strnstr.c +++ b/src/string/strn/strnstr.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 bbbadf6..84d3595 100644 --- a/src/string/strn/strstrncpy.c +++ b/src/string/strn/strstrncpy.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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 1b57cb2..0e9aa95 100644 --- a/src/string/strn/strstrnmove.c +++ b/src/string/strn/strstrnmove.c @@ -1,6 +1,6 @@ /** * slibc — Yet another C library - * Copyright © 2015, 2016 Mattias Andrée (maandree@member.fsf.org) + * Copyright © 2015, 2016 Mattias Andrée (m@maandree.se) * * 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