MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / dStrcat

Function dStrcat

Engine/source/core/strings/stringFunctions.h:60–64  ·  view source on GitHub ↗

@deprecated Use dStrcat(char *, const char *, dsize_t) instead

Source from the content-addressed store, hash-verified

58#ifdef UNSAFE_STRING_FUNCTIONS
59/// @deprecated Use dStrcat(char *, const char *, dsize_t) instead
60inline 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.

Callers 15

arcaneFX.cppFile · 0.85
formatDescMethod · 0.85
collapseScriptFilenameFunction · 0.85
writeFieldsMethod · 0.85
setDataFieldMethod · 0.85
getDataFieldMethod · 0.85
getDataFieldTypeMethod · 0.85
setDataFieldTypeMethod · 0.85
getNamespaceListFunction · 0.85
execMethod · 0.85
updateTokenMethod · 0.85
writeNewObjectMethod · 0.85

Calls 1

dStrlcatFunction · 0.85

Tested by

no test coverage detected