Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2015-06-23 16:10:14 +0300
committerJon TURNEY <jon.turney@dronecode.org.uk>2015-06-24 14:23:55 +0300
commita4dd7dd87c886e66be679f19bc8cab8ce9ca70d1 (patch)
tree201b77c4f2ac1385b6ec93d8d845f839bd74af93 /newlib/libc/string/strings.tex
parent433aad912d9e324b137b8ff991bcdba3b5f5ea7f (diff)
Use makedoc output files which are generated but aren't included
I think these are accidental omissions, as these source files are listed to be chewed by makedoc, but the result is not included by any texinfo source file. Future work: Nothing in libc/reent/ which is processed by makedoc is included by reent.tex 2015-06-23 Jon Turney <jon.turney@dronecode.org.uk> * libc/stdlib/stdlib.tex: Include itoa and utoa, and add to menu. * libc/string/strings.tex: Include memrchr and rawmemchr, and add to menu. * libm/math/math.tex: Include exp10 and pow10, and add to menu. * libm/common/s_exp10.c: Improve one-line description. * libm/common/s_exp10.c: Ditto. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
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 ae00a261a..9dfc7990a 100644
--- a/newlib/libc/string/strings.tex
+++ b/newlib/libc/string/strings.tex
@@ -17,7 +17,9 @@ managing areas of memory. The corresponding declarations are in
* memmem:: Find memory segment
* memmove:: Move possibly overlapping memory
* mempcpy:: Copy memory regions and locate end
+* memrchr:: Reverse search for character in memory
* memset:: Set an area of memory
+* rawmemchr:: Find character in memory
* rindex:: Reverse search for character in string
* stpcpy:: Copy string returning a pointer to its end
* stpncpy:: Counted copy string returning a pointer to its end
@@ -86,9 +88,15 @@ managing areas of memory. The corresponding declarations are in
@include string/mempcpy.def
@page
+@include string/memrchr.def
+
+@page
@include string/memset.def
@page
+@include string/rawmemchr.def
+
+@page
@include string/rindex.def
@page