summaryrefslogtreecommitdiffstats
path: root/newlib/libc
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/stdlib/stdlib.tex8
-rw-r--r--newlib/libc/string/strings.tex8
2 files changed, 16 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/stdlib.tex b/newlib/libc/stdlib/stdlib.tex
index 7ec63f15a..fdd495e5d 100644
--- a/newlib/libc/stdlib/stdlib.tex
+++ b/newlib/libc/stdlib/stdlib.tex
@@ -23,6 +23,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
* gcvt:: Format double or float as string
* exit:: End program execution
* getenv:: Look up environment variable
+* itoa:: Integer to string
* labs:: Long integer absolute value (magnitude)
* ldiv:: Divide two long integers
* llabs:: Long long integer absolute value (magnitude)
@@ -50,6 +51,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
* wcstoul:: Wide string to unsigned long
* wcstoull:: Wide string to unsigned long long
* system:: Execute command string
+* utoa:: Unsigned integer to string
* wcstombs:: Minimal wide string to multibyte string converter
* wctomb:: Minimal wide character to multibyte converter
@end menu
@@ -106,6 +108,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/getenv.def
@page
+@include stdlib/itoa.def
+
+@page
@include stdlib/labs.def
@page
@@ -187,6 +192,9 @@ The corresponding declarations are in the header file @file{stdlib.h}.
@include stdlib/system.def
@page
+@include stdlib/utoa.def
+
+@page
@include stdlib/wcstombs.def
@page
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