memset32 — Fill a memory area with a uint32_t
void * memset32 ( | uint32_t * s, |
| uint32_t v, | |
size_t count); |
sPointer to the start of the area.
vThe value to fill the area with
countThe number of values to store
Differs from memset in that it fills with a uint32_t instead
of a byte. Remember that count is the number of uint32_ts to
store, not the number of bytes.