aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/strn
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/strn
parentEmpty signed commit (diff)
downloadslibc-a154fb3467c8a1e46e4dc03cf86c26b22d4021af.tar.gz
slibc-a154fb3467c8a1e46e4dc03cf86c26b22d4021af.tar.bz2
slibc-a154fb3467c8a1e46e4dc03cf86c26b22d4021af.tar.xz
Update e-mailHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/string/strn')
-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
15 files changed, 15 insertions, 15 deletions
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