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

Method tcscpy

UTCP/src/UT_StrOp.cpp:166–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164#endif // _UNICODE
165
166void CUT_Str::tcscpy(TCHAR * dest, SIZE_T length, const TCHAR* src)
167{
168#if _MSC_VER >= 1400
169 ::_tcscpy_s(dest, length, src);
170#else
171 UNREFERENCED_PARAMETER(length);
172 ::_tcscpy(dest,src);
173# endif
174}
175
176char* CUT_Str::fcvt(double val, int count, int * dec, int * sign)
177{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected