Go to the first, previous, next, last section, table of contents.


stpcpy

Syntax

#include <string.h>

char *stpcpy(char *_dest, const char *_src);

Description

Like strcpy (see section strcpy), but return value different.

Return Value

Returns a pointer to the trailing NUL in dest.

Portability

not ANSI, not POSIX


Go to the first, previous, next, last section, table of contents.