summaryrefslogtreecommitdiffstats
path: root/newlib/libc/string/strings.tex
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/strings.tex')
-rw-r--r--newlib/libc/string/strings.tex8
1 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/string/strings.tex b/newlib/libc/string/strings.tex
index f70580b2c..b5435033a 100644
--- a/newlib/libc/string/strings.tex
+++ b/newlib/libc/string/strings.tex
@@ -10,10 +10,12 @@ managing areas of memory. The corresponding declarations are in
* bcopy:: Copy memory regions
* bzero:: Initialize memory to zero
* index:: Search for character in string
+* memccpy:: Copy memory regions up to end-token
* memchr:: Find character in memory
* memcmp:: Compare two memory areas
* memcpy:: Copy memory regions
* memmove:: Move possibly overlapping memory
+* mempcpy:: Copy memory regions and locate end
* memset:: Set an area of memory
* rindex:: Reverse search for character in string
* strcasecmp:: Compare strings ignoring case
@@ -53,6 +55,9 @@ managing areas of memory. The corresponding declarations are in
@include string/index.def
@page
+@include string/memcccpy.def
+
+@page
@include string/memchr.def
@page
@@ -65,6 +70,9 @@ managing areas of memory. The corresponding declarations are in
@include string/memmove.def
@page
+@include string/mempcpy.def
+
+@page
@include string/memset.def
@page