StringPtr PStrCopy (StringPtr dst, ConstStr255Param src);
char *CStrCopy (char *dst, const char *src);
The PStrCopy function copies the Pascal string from src to dst. CStrCopy copies characters up to and including the null character from src to dst C strings. These routines assume that the two strings do not overlap.