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

Method tcsncat

UTCP/src/UT_StrOp.cpp:255–263  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253}
254
255void CUT_Str::tcsncat(TCHAR * dest, size_t size, const TCHAR * src, size_t count)
256{
257#if _MSC_VER >= 1400
258 _tcsncat_s(dest, size, src, count);
259#else
260 UNREFERENCED_PARAMETER(size);
261 _tcsncat(dest, src, count);
262# endif
263}
264
265
266

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected