aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/mem
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/mem')
-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
16 files changed, 16 insertions, 16 deletions
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