Appends up to a specified maximum number of characters to string.
function StrLCat(Dest: PChar; const Source: PChar; MaxLen: Cardinal): PChar;
const char * StrLCat(const char * Dest, const const char * Source, unsigned MaxLen);
SysUtils
StrLCat appends at most MaxLen - StrLen(Dest) characters from Source to the end of Dest and returns Dest. That is, MaxLen indicates the maximum length that is allowed in the result string.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|