(C) 1998 AROS - The Amiga Research OS
NAME
#include <string.h>
void * memset ()
SYNOPSIS
void * dest
int c
size_t count
FUNCTION
Fill the memory at dest with count times c.
INPUTS
dest
The first byte of the destination area in memory
c
The byte to fill memory with
count
How many bytes to write
RESULT
dest.
EXAMPLE
SEE ALSO
memmove(), memcpy()
NOTES
BUGS
INTERNALS
HISTORY
04.01.1999 nlorentz
Bugfix: Did not set remaining not-on-ULONG-boundary memory correctly
20.10.1998 hkiel
Amiga Research OS
01.01.1997 ldp
Changed clib to proto
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
25.11.1996 aros
New function memset()