

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