@deprecated Use dStrcat(char *, const char *, dsize_t) instead
| 58 | #ifdef UNSAFE_STRING_FUNCTIONS |
| 59 | /// @deprecated Use dStrcat(char *, const char *, dsize_t) instead |
| 60 | inline char *dStrcat(char *dst, const char *src) |
| 61 | { |
| 62 | AssertFatal(false, "dStrcat without length is deprecated"); |
| 63 | return strcat(dst,src); |
| 64 | } |
| 65 | #endif |
| 66 | |
| 67 | /// Concatenate strings. |
no test coverage detected