STD_CopyLString

C Specification

#include <nitro/std.h>

char* STD_CopyLString( char* destp, const char* srcp, int n );
char* STD_StrLCpy( char* destp, const char* srcp, int n );

Arguments

destp Specifies the copy destination pointer.
srcp Specifies the copy source pointer.
n Specifies the maximum characters copied.

Return Values

Returns the copy target string pointer.

Description

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().

See Also

STD_CopyString

Revision History

10/05/2005 Initial version.