tail head cat sleep
QR code linking to this page

manページ  — BZERO

名称

bzero – バイト文字列に 0 を書き込む

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <string.h>

void
bzero(void *b, size_t len);

解説

bzero() 関数は、 len 個の 0 バイトを文字列 b に書き込みます。 len が 0 の場合、 bzero() は何もしません。

関連項目

memset(3), swab(3)

歴史

bzero() 関数は BSD 4.3 で登場しました。

BZERO (3) June 4, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs.
— Maurice Wilkes