1MEMSET16(9) Basic C Library Functions MEMSET16(9)
2
3
4
6 memset16 - Fill a memory area with a uint16_t
7
9 void * memset16(uint16_t * s, uint16_t v, size_t count);
10
12 s
13 Pointer to the start of the area.
14
15 v
16 The value to fill the area with
17
18 count
19 The number of values to store
20
22 Differs from memset in that it fills with a uint16_t instead of a byte.
23 Remember that count is the number of uint16_ts to store, not the number
24 of bytes.
25
27Kernel Hackers Manual 3.10 June 2019 MEMSET16(9)