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

Method itot

UTCP/src/UT_StrOp.cpp:267–275  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

265
266
267void CUT_Str::itot(int value, TCHAR * dest, size_t size, int radix)
268{
269#if _MSC_VER >= 1400
270 _itot_s(value, dest, size, radix);
271#else
272 UNREFERENCED_PARAMETER(size);
273 _itot(value, dest, radix);
274#endif
275}
276
277void CUT_Str::itoa(int value, char * dest, size_t size, int radix)
278{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected