aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/string.h2
-rw-r--r--include/wchar.h2
-rw-r--r--src/string/str/strnmove.c2
-rw-r--r--src/wchar/wcsnmove.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/include/string.h b/include/string.h
index b38e849..ea3a4de 100644
--- a/include/string.h
+++ b/include/string.h
@@ -493,6 +493,8 @@ char* strstrmove(char*, const char*, const char* restrict)
* Copy a memory segment to another, possibly overlapping, segment,
* stop when a NUL byte is encountered.
*
+ * This is a slibc extension added for completeness.
+ *
* @param whither The destination memory segment.
* @param whence The source memory segment.
* @param maxlen The maximum number of bytes to copy.
diff --git a/include/wchar.h b/include/wchar.h
index ce64a5b..5223d3f 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -423,6 +423,8 @@ wchar_t* wcsstrmove(wchar_t*, const wchar_t*, const wchar_t* restrict)
* Copy a memory segment to another, possibly overlapping, segment,
* stop when a NUL wide character is encountered.
*
+ * This is a slibc extension added for completeness.
+ *
* @param whither The destination memory segment.
* @param whence The source memory segment.
* @param maxlen The maximum number of wide characters to copy.
diff --git a/src/string/str/strnmove.c b/src/string/str/strnmove.c
index a7ec028..a8b3224 100644
--- a/src/string/str/strnmove.c
+++ b/src/string/str/strnmove.c
@@ -23,6 +23,8 @@
* Copy a memory segment to another, possibly overlapping, segment,
* stop when a NUL byte is encountered.
*
+ * This is a slibc extension added for completeness.
+ *
* @param whither The destination memory segment.
* @param whence The source memory segment.
* @param maxlen The maximum number of bytes to copy.
diff --git a/src/wchar/wcsnmove.c b/src/wchar/wcsnmove.c
index 1abe3f0..899b611 100644
--- a/src/wchar/wcsnmove.c
+++ b/src/wchar/wcsnmove.c
@@ -23,6 +23,8 @@
* Copy a memory segment to another, possibly overlapping, segment,
* stop when a NUL wide character is encountered.
*
+ * This is a slibc extension added for completeness.
+ *
* @param whither The destination memory segment.
* @param whence The source memory segment.
* @param maxlen The maximum number of wide characters to copy.