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

Function dStrcpy

Engine/source/core/strings/stringFunctions.h:110–114  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

108#ifdef UNSAFE_STRING_FUNCTIONS
109/// @deprecated Use strcpy(char *, const char *, dsize_t) instead
110inline 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
117inline char *dStrcpy(char *dst, const char *src, dsize_t dstSize)

Callers 15

VController.cppFile · 0.85
onAddMethod · 0.85
onAddMethod · 0.85
trigger_new_phraseMethod · 0.85
setBitmapMethod · 0.85
onAddMethod · 0.85
fmt_placeholder_descMethod · 0.85
formatDescMethod · 0.85
VController.cppFile · 0.85
expandToolScriptFilenameFunction · 0.85
expandOldScriptFilenameFunction · 0.85

Calls 1

dStrlcpyFunction · 0.85

Tested by

no test coverage detected