Language:
Русский
English
StrLCat (function) (Strings unit)
Appends characters from one string to the end of another and returns the concatenated string.
Declaration
function StrLCat(Dest, Source: PChar; MaxLen: Word): PChar;
Target
Windows
Remarks
StrLCat appends at most MaxLen - StrLen(Dest) characters from Source to the
end of Dest and returns Dest. The SizeOf standard function can be used to
determine the MaxLen parameter.