Linux 小记录

<1>bzero  

原型:extern void bzero(void *s, int n);
用法:#include <string.h>

功能:置字节字符串s的前n个字节为零。    
说明:bzero无返回值。    

LINUX平台支持bzero的,但是其并不在ANSI C中定义,也就是不属于C的库函数.难怪以前没见过。。。

原文地址:https://www.cnblogs.com/jiayith/p/3519285.html