char __near * __far strcpy(char __near *s1, const char __near *s2);
char __far * __far _COM_strcpy_ff(char __far *s1, const char __far *s2);
This function copies the character string indicated by s2 (terminating null character is included) to the array indicated by s1.
The operation is undefined if the copy source and copy destination areas overlap.