memset64 — Fill a memory area with a uint64_t
void * memset64 ( | uint64_t * s, |
uint64_t v, | |
size_t count) ; |
s
Pointer to the start of the area.
v
The value to fill the area with
count
The number of values to store
Differs from memset
in that it fills with a uint64_t instead
of a byte. Remember that count
is the number of uint64_ts to
store, not the number of bytes.