#include <nitro/std.h>
char* STD_CopyLString( char* destp, const char* srcp, int n );
char* STD_StrLCpy( char* destp, const char* srcp, int n );
destp | Specifies the copy destination pointer. |
srcp | Specifies the copy source pointer. |
n | Specifies the maximum characters copied. |
Returns the copy target string pointer.
Copies a maximum of n
characters from string srcp
to string destp
. It carries out the same operation as the C standard function strlcpy()
.
STD_StrLCpy()
is defined as another name for STD_CopyLString()
.
10/05/2005 Initial version.