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.

C isn't that hard: void (*(*f[])())() defines f as an array of unspecified size, of pointers to functions that return pointers to functions that return void