STD_CopyString

C Specification

#include <nitro/std.h>

char* STD_CopyString( char* destp, const char* srcp );
char* STD_StrCpy( char* destp, const char* srcp );

Arguments

destp Specifies the copy destination pointer.
srcp Specifies the copy source pointer.

Return Values

Returns the copy target string pointer.

Description

Copies string srcp to string destp. It carries out the same operation as the C standard function strcpy().

STD_CopyString() is defined as another name for STD_StrCpy().

See Also

STD_CopyLString

Revision History

10/05/2005 Initial version.

CONFIDENTIAL