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

Method ltot

UTCP/src/UT_StrOp.cpp:287–295  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

285}
286
287void CUT_Str::ltot(long value, TCHAR * dest, size_t size, int radix)
288{
289#if _MSC_VER >= 1400
290 _ltot_s(value, dest, size, radix);
291#else
292 UNREFERENCED_PARAMETER(size);
293 _ltot(value, dest, radix);
294#endif
295}
296
297TCHAR* CUT_Str::tcstok(TCHAR* strToken, const TCHAR* strDelimit, TCHAR ** context)
298{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected