#include <nitro/std.h>
char* STD_CopyString( char* destp, const char* srcp );
char* STD_StrCpy( char* destp, const char* srcp );
destp | Specifies the copy destination pointer. |
srcp | Specifies the copy source pointer. |
Returns the copy target string pointer.
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()
.
10/05/2005 Initial version.
CONFIDENTIAL