other languages
BZERO(3) | Linux Programmer's Manual | BZERO(3) |
NAME¶
bzero - 向字符串寫入零總覽 (SYNOPSIS)¶
#include <string.h> void bzero(void *s, size_t n);
描述 (DESCRIPTION)¶
bzero() 函數 把 字符串 s 的 前 n 個 字節 置成 零.返回值 (RETURN VALUE)¶
bzero() 函數 無 返回值.遵循 (CONFORMING TO)¶
4.3BSD. 建議 不要 用 這個 函數 -- 請 在 新的 程序中 用 memset 函數.參見 (SEE ALSO)¶
memset(3), swab(3)[中文版維護人]¶
唐友 <tony_ty@263.net>[中文版最新更新]¶
2002/1/28[中國Linux論壇man手冊頁翻譯計劃]¶
http://cmpp.linuxforum.net跋¶
本頁面中文版由中文 man 手冊頁計劃提供。中文 man 手冊頁計劃:https://github.com/man-pages-zh/manpages-zh
1993-04-09 | GNU |