string.3: Add stpcpy() to this list of string functions

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Mark Hills 2009-12-05 07:40:42 +01:00 committed by Michael Kerrisk
parent e70f27ec76
commit 513785e299
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,7 @@
.\" Modified Sun Jul 25 10:54:31 1993, Rik Faith (faith@cs.unc.edu)
.TH STRING 3 1993-04-09 "" "Linux Programmer's Manual"
.SH NAME
strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn,
stpcpy, strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn,
strdup, strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk,
strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex
\- string operations
@ -45,6 +45,8 @@ strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex
.sp
.B #include <string.h>
.sp
.BI "char *stpcpy(char *" dest ", const char *" src );
.sp
.BI "char *strcat(char *" dest ", const char *" src );
.sp
.BI "char *strchr(const char *" s ", int " c );
@ -91,6 +93,7 @@ See the individual man pages for descriptions of each function.
.BR index (3),
.BR rindex (3),
.BR strcasecmp (3),
.BR stpcpy (3),
.BR strcat (3),
.BR strchr (3),
.BR strcmp (3),