MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / wcscpy

Method wcscpy

UTCP/src/UT_StrOp.cpp:411–420  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

409#endif
410
411void CUT_Str::wcscpy(wchar_t * dest, size_t size, const wchar_t * source)
412{
413#if _MSC_VER >= 1400
414
415 wcscpy_s(dest, size, source);
416#else
417 UNREFERENCED_PARAMETER(size);
418 ::wcscpy(dest, source);
419#endif
420}
421
422void CUT_Str::strcpy(char * dest, size_t size, const char * src)
423{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected