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

Method tcscat

UTCP/src/UT_StrOp.cpp:245–253  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

243
244
245void CUT_Str::tcscat(TCHAR * dest, SIZE_T length, const TCHAR* src)
246{
247#if _MSC_VER >= 1400
248 _tcscat_s(dest, length, src);
249#else
250 UNREFERENCED_PARAMETER(length);
251 _tcscat(dest, src);
252# endif
253}
254
255void CUT_Str::tcsncat(TCHAR * dest, size_t size, const TCHAR * src, size_t count)
256{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected