1. NAME

memset - Fill a region of memory with the given value

2. SYNOPSIS

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

3. ARGUMENTS

s
    Pointer to the start of the area.

c
    The byte to fill the area with

count
    The size of the area.

4. DESCRIPTION

Do not use memset to access IO space, use memset_io instead.

5. COPYRIGHT