Make all bucket and overflow addresses unsigned
[unix-history] / usr / src / lib / libc / string / bzero.3
CommitLineData
acc78d43
KB
1.\" Copyright (c) 1990 The Regents of the University of California.
2.\" All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek.
6.\"
7.\" %sccs.include.redist.man%
8.\"
9.\" @(#)bzero.3 5.1 (Berkeley) %G%
10.\"
11.TH BZERO 3 ""
12.UC 7
13.SH NAME
14bzero \- write zeroes to a byte string
15.SH SYNOPSIS
16.nf
17.ft B
18#include <string.h>
19
20void
21bzero(char *b, size_t len);
22.ft R
23.fi
24.SH DESCRIPTION
25.B Bzero
26writes
27.I len
28zero bytes to the string
29.IR b .
30If
31.I len
32is zero,
33.B bzero
34does nothing.
35.SH SEE ALSO
36memset(3), swab(3)