Retro68/gcc/newlib/libc/string/bzero.c

35 lines
570 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/*
FUNCTION
<<bzero>>---initialize memory to zero
INDEX
bzero
2018-12-28 15:30:48 +00:00
SYNOPSIS
2017-04-11 21:13:36 +00:00
#include <strings.h>
void bzero(void *<[b]>, size_t <[length]>);
DESCRIPTION
<<bzero>> initializes <[length]> bytes of memory, starting at address
<[b]>, to zero.
RETURNS
<<bzero>> does not return a result.
PORTABILITY
<<bzero>> is in the Berkeley Software Distribution.
Neither ANSI C nor the System V Interface Definition (Issue 2) require
<<bzero>>.
<<bzero>> requires no supporting OS subroutines.
*/
2018-12-28 15:30:48 +00:00
#include <string.h>
2017-04-11 21:13:36 +00:00
2018-12-28 15:30:48 +00:00
void
bzero(void *b, size_t length)
2017-04-11 21:13:36 +00:00
{
2018-12-28 15:30:48 +00:00
memset(b, 0, length);
2017-04-11 21:13:36 +00:00
}