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:
authorJeff Johnston <jjohnstn@redhat.com>2004-09-17 01:15:14 +0400
committerJeff Johnston <jjohnstn@redhat.com>2004-09-17 01:15:14 +0400
commit14613e5e74b633aeaa4f69e7ea096074ba94cb1f (patch)
tree0503fb6fabceee7c268746ac4cd69c6428ef6b84 /newlib/libc/string
parent368ffbe3d851a72b74527088f9cba63f71466742 (diff)
2004-09-16 Antony King <antony.king@st.com>
* libc/ctype/ctype.tex: Added missing documentation. * libc/stdio/stdio.tex Ditto. * libc/stdlib/stdlib.tex Ditto. * libc/string/strings.tex Ditto. * libc/time/time.tex: Ditto. * libc/stdio/setbuffer.c: Removed setlinebuf documentation.
Diffstat (limited to 'newlib/libc/string')
-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 7f9106ee9..4e1a2cd16 100644
--- a/newlib/libc/string/strings.tex
+++ b/newlib/libc/string/strings.tex
@@ -26,12 +26,14 @@ managing areas of memory. The corresponding declarations are in
* strcpy:: Copy string
* strcspn:: Count chars not in string
* strerror:: Convert error number to string
+* strerror_r:: Convert error number to string
* strlen:: Character string length
* strlwr:: Convert string to lower case
* strncasecmp:: Compare strings ignoring case
* strncat:: Concatenate strings
* strncmp:: Character string compare
* strncpy:: Counted copy string
+* strnlen:: Character string length
* strpbrk:: Find chars in string
* strrchr:: Reverse search for character in string
* strspn:: Find initial match
@@ -103,6 +105,9 @@ managing areas of memory. The corresponding declarations are in
@include string/strerror.def
@page
+@include string/strerror_r.def
+
+@page
@include string/strlen.def
@page
@@ -121,6 +126,9 @@ managing areas of memory. The corresponding declarations are in
@include string/strncpy.def
@page
+@include string/strnlen.def
+
+@page
@include string/strpbrk.def
@page