| 164 | #endif // _UNICODE |
| 165 | |
| 166 | void CUT_Str::tcscpy(TCHAR * dest, SIZE_T length, const TCHAR* src) |
| 167 | { |
| 168 | #if _MSC_VER >= 1400 |
| 169 | ::_tcscpy_s(dest, length, src); |
| 170 | #else |
| 171 | UNREFERENCED_PARAMETER(length); |
| 172 | ::_tcscpy(dest,src); |
| 173 | # endif |
| 174 | } |
| 175 | |
| 176 | char* CUT_Str::fcvt(double val, int count, int * dec, int * sign) |
| 177 | { |
nothing calls this directly
no outgoing calls
no test coverage detected