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

Method sntprintf

UTCP/src/UT_StrOp.cpp:214–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

212}
213
214void CUT_Str::sntprintf(TCHAR * dest, size_t size, size_t count, const TCHAR * src, ...)
215{
216 va_list vl;
217 va_start( vl, src );
218
219#if _MSC_VER >= 1400
220 _vsntprintf_s_l(dest, size, count, src, NULL, vl);
221#else
222 UNREFERENCED_PARAMETER(count);
223 _sntprintf(dest, size, src, NULL, vl);
224# endif
225
226 va_end( vl );
227}
228
229void CUT_Str::sprintf(char * dest, size_t size, const char * src, ...)
230{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected