1MEMSET(9)                  Basic C Library Functions                 MEMSET(9)
2
3
4

NAME

6       memset - Fill a region of memory with the given value
7

SYNOPSIS

9       void * memset(void * s, int c, size_t count);
10

ARGUMENTS

12       s
13           Pointer to the start of the area.
14
15       c
16           The byte to fill the area with
17
18       count
19           The size of the area.
20

DESCRIPTION

22       Do not use memset to access IO space, use memset_io instead.
23
25Kernel Hackers Manual 2.6.         June 2019                         MEMSET(9)
Impressum