fn() memset
An implementation of memset with fixed number of bytes using Metaprogramming.

Defined in <seqa/misc/memset.h>
Signature template <unsigned SIZE> void memset(ptr[, c]);

Parameters

ptr The first position to reset.
c The value to set to.

Template Parameters

SIZE The number of bytes to reset, i.e. the values in [ptr, ptr + SIZE) are set to c.

Data Races

Thread safety unknown!