MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / dStrcpy

Function dStrcpy

engine/source/platformAndroid/AndroidStrings.cpp:187–191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185
186
187char* dStrcpy(char *dst, const char *src)
188{
189 AssertFatal(dst && src, "bad strings passed to dStrcpy()");
190 return strcpy(dst,src);
191}
192
193char* dStrncpy(char *dst, const char *src, dsize_t len)
194{

Callers 7

processMultipleTouchesFunction · 0.70
dStrdup_rFunction · 0.70
dStrnewFunction · 0.70
inputLoopMethod · 0.70
AndroidStreamSourceMethod · 0.70
AndroidPlatStateMethod · 0.70
T2DActivity.cppFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected