aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/mem
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-06 09:15:45 +0200
committerMattias Andrée <m@maandree.se>2024-10-06 09:15:45 +0200
commita154fb3467c8a1e46e4dc03cf86c26b22d4021af (patch)
tree7774f50cf6f9ab3cca0214703489094694222184 /src/string/mem
parentEmpty signed commit (diff)
downloadslibc-master.tar.gz
slibc-master.tar.bz2
slibc-master.tar.xz
Update e-mailHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to '')
-rw-r--r--src/string/mem/memcasecmp.c2
-rw-r--r--src/string/mem/memcasemem.c2
-rw-r--r--src/string/mem/memccpy.c2
-rw-r--r--src/string/mem/memchr.c2
-rw-r--r--src/string/mem/memcmove.c2
-rw-r--r--src/string/mem/memcmp.c2
-rw-r--r--src/string/mem/memcpy.c2
-rw-r--r--src/string/mem/memdup.c2
-rw-r--r--src/string/mem/memmem.c2
-rw-r--r--src/string/mem/memmove.c2
-rw-r--r--src/string/mem/mempcpy.c2
-rw-r--r--src/string/mem/mempmove.c2
-rw-r--r--src/string/mem/memrchr.c2
-rw-r--r--src/string/mem/memset.c2
-rw-r--r--src/string/mem/rawmemchr.c2
-rw-r--r--src/string/mem/substring.h2
-rw-r--r--src/string/memfrob.c2
17 files changed, 17 insertions, 17 deletions
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