| 420 | } |
| 421 | |
| 422 | void CUT_Str::strcpy(char * dest, size_t size, const char * src) |
| 423 | { |
| 424 | #if _MSC_VER >= 1400 |
| 425 | strcpy_s(dest, size, src); |
| 426 | #else |
| 427 | UNREFERENCED_PARAMETER(size); |
| 428 | ::strcpy(dest, src); |
| 429 | #endif |
| 430 | } |
nothing calls this directly
no outgoing calls
no test coverage detected