1MEMSET(9) Basic C Library Functions MEMSET(9)
23
4
NAME
6memset - Fill a region of memory with the given value
7
SYNOPSIS
9void * memset(void * s, int c, size_t count);
10
ARGUMENTS
12s
13Pointer to the start of the area.
1415
c
16The byte to fill the area with
1718
count
19The size of the area.
20
DESCRIPTION
22Do not use memset to access IO space, use memset_io instead.
23
COPYRIGHT
25Kernel Hackers Manual 2.6. November 2011 MEMSET(9)