821
SYNOPSIS #include <string.h> char *strcpy(char *dst, const char *src);
DESCRIPTION
strcpy
copies the string pointed to by src
(including the terminating null character) to the array pointed to by dst.
RETURNS
This function returns the initial value of dst.
COMPLIANCE
strcpy
is ANSI C.
strcpy requires no supporting OS subroutines.
0