[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]


wcscpy

Copy one wide character array to another.

Compatibility:

This function is compatible with the following targets:

ANSI

BeOS

EMB/RTOS

Mac OS

Palm OS

Win32


Prototype:
#include <wchar.h>
wchar_t * (wcscpy)(wchar_t * dst, 
  const wchar_t * src);
Parameters:

Parameters for this function are:

dst  
wchar_t *  
The destination string  
src  
wchar_t *  
The source being copied  

Remarks:

The wcscpy() function copies the character array pointed to by src to the character array pointed to dst. The src argument must point to a null terminated wide character array. The resulting character array at dest is null terminated as well.

If the arrays pointed to by dest and source overlap, the operation of strcpy() is undefined.

Return:

Returns a pointer to the destination string.

See Also:

"strcpy"


[ First ]  [ Previous ]  [ Next ]  [ Last ]  [ Manuals ]

Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.

Last updated: August 16, 2000