summaryrefslogtreecommitdiffstats
path: root/newlib/libc/string/strings.tex
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2007-06-28 17:07:23 +0000
committerCorinna Vinschen <corinna@vinschen.de>2007-06-28 17:07:23 +0000
commit5d8b97a6942169497ba891acf86725ec87afa60b (patch)
treeb802738264b2f57d3088579c0d9ffae9a7a09633 /newlib/libc/string/strings.tex
parenta4b5a24055334025e399b3d1b06985a39beeaa84 (diff)
downloadcygnal-5d8b97a6942169497ba891acf86725ec87afa60b.tar.gz
cygnal-5d8b97a6942169497ba891acf86725ec87afa60b.tar.bz2
cygnal-5d8b97a6942169497ba891acf86725ec87afa60b.zip
* libc/include/string.h: Add prototypes for stpcpy and stpncpy.
* libc/string/Makefile.am (ELIX_SOURCES): Add stpcpy.c and stpncpy.c. (CHEWOUT_FILES): Add stpcpy.def and stpncpy.def. * libc/string/Makefile.in: Regenerate. * libc/string/stpcpy.c: New file. * libc/string/stpncpy.c: New file. * libc/string/strings.tex: Add stpcpy and stpncpy.
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 5d43fd56b..5ba6e0fe5 100644
--- a/newlib/libc/string/strings.tex
+++ b/newlib/libc/string/strings.tex
@@ -18,6 +18,8 @@ managing areas of memory. The corresponding declarations are in
* mempcpy:: Copy memory regions and locate end
* memset:: Set an area of 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
* strcasecmp:: Compare strings ignoring case
* strcasestr:: Find string segment ignoring case
* strcat:: Concatenate strings
@@ -82,6 +84,12 @@ managing areas of memory. The corresponding declarations are in
@include string/rindex.def
@page
+@include string/stpcpy.def
+
+@page
+@include string/stpncpy.def
+
+@page
@include string/strcasecmp.def
@page