StringPtr PStrCat (StringPtr dst, ConstStr255Param src);
char *CStrCat (char *dst, const char *src);
PStrCat appends characters from src to dst Pascal strings. CStrCat appends characters from src to dst C strings. The initial character of src overwrites the null character at the end of dst. A terminating null character is always appended.