Language:
Русский
English
StrCat (function) (Strings unit)
Appends a copy of one string to the end of another and returns the concatenated string.
Declaration
function StrCat(Dest, Source: PChar): PChar;
Target
Windows
Remarks
StrCat does not perform any length checking.
The destination buffer must have room for at least StrLen(Dest)+StrLen(Source)+1 characters.