table of contents
other versions
other sections
MEMSET(9) | Basic C Library Functions | MEMSET(9) |
NAME¶
memset - Fill a region of memory with the given value
SYNOPSIS¶
void * memset(void * s, int c, size_t count);
ARGUMENTS¶
void * s
Pointer to the start of the area.
int c
The byte to fill the area with
size_t count
The size of the area.
DESCRIPTION¶
Do not use memset to access IO space, use memset_io instead.
COPYRIGHT¶
June 2017 | Kernel Hackers Manual 4.11 |