@deprecated Use strcpy(char *, const char *, dsize_t) instead
| 108 | #ifdef UNSAFE_STRING_FUNCTIONS |
| 109 | /// @deprecated Use strcpy(char *, const char *, dsize_t) instead |
| 110 | inline char *dStrcpy(char *dst, const char *src) |
| 111 | { |
| 112 | AssertFatal(false, "dStrcpy without length is deprecated"); |
| 113 | return strcpy(dst,src); |
| 114 | } |
| 115 | #endif |
| 116 | |
| 117 | inline char *dStrcpy(char *dst, const char *src, dsize_t dstSize) |
no test coverage detected