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

Method memset

Server/src/md5.cpp:470–476  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

468
469// Note: Replace "for loop" with standard memset if possible.
470void MD5::memset (uint1 *output, uint1 value, uint4 len){
471
472 unsigned int i;
473
474 for (i = 0; i < len; i++)
475 output[i] = value;
476}
477
478
479

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected