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

Function __yy_memcpy

Engine/source/console/cmdgram.cpp:1262–1271  ·  view source on GitHub ↗

This is the most reliable way to avoid incompatibilities in available built-in functions on various systems. */

Source from the content-addressed store, hash-verified

1260
1261/* This is the most reliable way to avoid incompatibilities
1262 in available built-in functions on various systems. */
1263static void
1264__yy_memcpy (char *from, char *to, int count)
1265{
1266 char *f = from;
1267 char *t = to;
1268 int i = count;
1269
1270 while (i-- > 0)
1271 *t++ = *f++;
1272}
1273
1274#endif

Callers 1

cmdgram.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected