| 243 | |
| 244 | |
| 245 | void CUT_Str::tcscat(TCHAR * dest, SIZE_T length, const TCHAR* src) |
| 246 | { |
| 247 | #if _MSC_VER >= 1400 |
| 248 | _tcscat_s(dest, length, src); |
| 249 | #else |
| 250 | UNREFERENCED_PARAMETER(length); |
| 251 | _tcscat(dest, src); |
| 252 | # endif |
| 253 | } |
| 254 | |
| 255 | void CUT_Str::tcsncat(TCHAR * dest, size_t size, const TCHAR * src, size_t count) |
| 256 | { |
nothing calls this directly
no outgoing calls
no test coverage detected