MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / MD5_memcpy

Function MD5_memcpy

md5.c:315–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313 */
314
315static void MD5_memcpy (POINTER output, POINTER input, unsigned int len)
316{
317
318#ifndef USE_MEM
319 unsigned int i;
320
321 for (i = 0; i < len; i++)
322 output[i] = input[i];
323#else
324 memcpy( output, input, len );
325#endif
326}
327
328/* Note: Replace "for loop" with standard memset if possible.
329 */

Callers 1

MD5UpdateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected