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

Method sprintf

UTCP/src/UT_StrOp.cpp:229–242  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227}
228
229void CUT_Str::sprintf(char * dest, size_t size, const char * src, ...)
230{
231 va_list vl;
232 va_start( vl, src );
233
234#if _MSC_VER >= 1400
235 _vsprintf_s_l(dest, size, src, NULL, vl);
236#else
237 UNREFERENCED_PARAMETER(size);
238 vsprintf(dest, src, vl);
239# endif
240
241 va_end( vl );
242}
243
244
245void CUT_Str::tcscat(TCHAR * dest, SIZE_T length, const TCHAR* src)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected