MCPcopy Create free account
hub / github.com/SNAS/openbmp / memcpy

Method memcpy

Server/src/md5.cpp:459–465  ·  view source on GitHub ↗

Note: Replace "for loop" with standard memcpy if possible.

Source from the content-addressed store, hash-verified

457
458// Note: Replace "for loop" with standard memcpy if possible.
459void MD5::memcpy (uint1 *output, uint1 *input, uint4 len){
460
461 unsigned int i;
462
463 for (i = 0; i < len; i++)
464 output[i] = input[i];
465}
466
467
468

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected