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

Method stprintf

UTCP/src/UT_StrOp.cpp:199–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197}
198
199void CUT_Str::stprintf(TCHAR * dest, size_t size, const TCHAR * src, ...)
200{
201 va_list vl;
202 va_start( vl, src );
203
204#if _MSC_VER >= 1400
205 _vstprintf_s_l(dest, size, src, NULL, vl);
206#else
207 UNREFERENCED_PARAMETER(size);
208 _vstprintf(dest, src, vl);
209# endif
210
211 va_end( vl );
212}
213
214void CUT_Str::sntprintf(TCHAR * dest, size_t size, size_t count, const TCHAR * src, ...)
215{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected