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

Method strcpy

UTCP/src/UT_StrOp.cpp:422–430  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

420}
421
422void CUT_Str::strcpy(char * dest, size_t size, const char * src)
423{
424#if _MSC_VER >= 1400
425 strcpy_s(dest, size, src);
426#else
427 UNREFERENCED_PARAMETER(size);
428 ::strcpy(dest, src);
429#endif
430}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected