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

Method TSprintf

src/StringUtils.cpp:266–274  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264}
265
266int SU::TSprintf(TCHAR * buffer, size_t bufferSize, const TCHAR * format, ...) {
267 va_list vaList;
268 va_start(vaList, format);
269
270 int ret = TSprintfV(buffer, bufferSize, format, vaList);
271
272 va_end(vaList);
273 return ret;
274}
275
276int SU::TSprintfV(TCHAR * buffer, size_t bufferSize, const TCHAR * format, va_list vaList) {
277 TCHAR * msgTchar = new TCHAR[lstrlen(format)+1];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected