CStrCpy

Copies from source to the destination string (including the NULL terminator).

Thread Context:Non-Blocking

Syntax

    void CStrCpy (
       void  *destinationString,
       void  *sourceString
    );
    
    

Parameters

destinationString
(IN) Points to the NULL-terminated string to modify with the content of sourceString.
sourceString
(IN) Points to the NULL-terminated string from which to copy characters.