Win32字符串处理函数

Win32字符串处理函数

一、字符串拷贝函数

_tcscpy_s  TCHAR.H
strcpy_s   _UNICODE & _MBCS not defined

The strcpy_s function copies the contents in the address of strSource, including the terminating null character, to the location specified by strDestination. The destination string must be large enough to hold the source string, including the terminating null character. The behavior of strcpy_s is undefined if the source and destination strings overlap.

你可能感兴趣的:(Win32)