VMS Help
CRTL, strcpy
*Conan The Librarian
|
Copies all of source, including the terminating null character,
into dest.
Format
#include <string.h>
char *strcpy (char *dest, const char *source);
The strcpy function has variants named _strcpy32 and _strcpy64
for use with 32-bit and 64-bit pointer sizes, respectively.
dest
Pointer to the destination character string.
source
Pointer to the source character string.
The strcpy function copies source into dest, and stops after
copying source's null character.
The behavior of this function is undefined if the area pointed to
by dest overlaps the area pointed to by source.
x The address of dest.