.\" This manpage has been automatically generated by docbook2man
.\" from a DocBook document. This tool can be found at:
.\"
.\" Please send any bug reports, improvements, comments, patches,
.\" etc. to Steve Cheng .
.TH "MEMSET" "" "06 October 2005" "" ""
.SH NAME
memset \- Fill a region of memory with the given value
.SH SYNOPSIS
"SYNOPSIS"
.sp
\fB
.sp
void * memset (void * \fIs\fB, int \fIc\fB, size_t \fIcount\fB);
\fR
.SH "ARGUMENTS"
.TP
\fB\fIs\fB\fR
Pointer to the start of the area.
.TP
\fB\fIc\fB\fR
The byte to fill the area with
.TP
\fB\fIcount\fB\fR
The size of the area.
.SH "DESCRIPTION"
.PP
Do not use \fBmemset\fR to access IO space, use \fBmemset_io\fR instead.