Copies specified number of characters to string.
function StrMove(Dest: PChar; const Source: PChar; Count: Cardinal): PChar;
const char * StrMove(const char * Dest, const const char * Source, unsigned Count);
SysUtils
StrMove copies exactly Count characters from Source to Dest and returns Dest. Source and Dest can overlap.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|