| 285 | } |
| 286 | |
| 287 | void 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 | |
| 297 | TCHAR* CUT_Str::tcstok(TCHAR* strToken, const TCHAR* strDelimit, TCHAR ** context) |
| 298 | { |
nothing calls this directly
no outgoing calls
no test coverage detected