1999-05-03 15:29:11 +08:00
|
|
|
/* memset
|
|
|
|
This implementation is in the public domain. */
|
|
|
|
|
2001-09-27 02:45:50 +08:00
|
|
|
/*
|
|
|
|
|
libiberty: documentation markup and order fixes.
libiberty/:
* splay-tree.c: Escape wrapping newlines in texinfo markup
with '@', to fix function declaration output rendering.
* gather-docs: Relax and improve macro name matching to actually
match all current names and to allow input line wrapping.
* bsearch.c, concat.c, crc32.c, fnmatch.txh, fopen_unlocked.c,
hashtab.c, insque.c, make-relative-prefix.c, memchr.c, memcmp.c,
memcpy.c, memmem.c, memmove.c, mempcpy.c, memset.c,
pexecute.txh, random.c, setenv.c, setproctitle.c,
simple-object.txh, snprintf.c, stpncpy.c, strncmp.c, strtod.c,
strtol.c, vasprintf.c, vprintf.c, vsnprintf.c, xmemdup.c:
Wrap long texinfo input lines.
* functions.texi: Regenerate.
2011-02-03 15:23:59 +08:00
|
|
|
@deftypefn Supplemental void* memset (void *@var{s}, int @var{c}, @
|
|
|
|
size_t @var{count})
|
2001-09-27 02:45:50 +08:00
|
|
|
|
|
|
|
Sets the first @var{count} bytes of @var{s} to the constant byte
|
|
|
|
@var{c}, returning a pointer to @var{s}.
|
|
|
|
|
|
|
|
@end deftypefn
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
#include <ansidecl.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
PTR
|
2005-03-28 13:07:08 +08:00
|
|
|
memset (PTR dest, register int val, register size_t len)
|
1999-05-03 15:29:11 +08:00
|
|
|
{
|
|
|
|
register unsigned char *ptr = (unsigned char*)dest;
|
|
|
|
while (len-- > 0)
|
|
|
|
*ptr++ = val;
|
|
|
|
return dest;
|
|
|
|
}
|