[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Copy a null-terminated string, limited in length.
Source position: syspchh.inc line 20
function strlcopy( |
dest: pchar; |
source: pchar; |
maxlen: SizeInt |
):pchar; overload; |
Dest: PWideChar; |
Source: PWideChar; |
MaxLen: SizeInt |
):PWideChar; overload; |
Copies MaxLen characters from Source to Dest, and makes Dest a null terminated string.
No length checking is performed.
|
Copy a null-terminated string |
|
|
Copy a null-terminated string, return a pointer to the end. |
Program Example5; Uses strings; { Program to demonstrate the StrLCopy function. } Const P : PCHar = '123456789ABCDEF'; var PP : PCHar; begin PP:=StrAlloc(11); Writeln ('First 10 characters of P : ',StrLCopy (PP,P,10)); StrDispose(PP); end.