linux下串口编程使用到了bzero函数
原型:extern void bzero(void *s, int n);
用法:#include <strings.h>
功能:置字节字符串s的前n个字节为零且包括‘\0’。
说明:bzero无返回值。
2 #include <strings.h>
3 #include<stdio.h>
4
5 main()
6 {
7 struct
8 {
9 int a;
10 char s[5];
11 float f;
12 } tt;
13
14 char s[20];
15
16 bzero(&tt,sizeof(tt)); // struct initialization to zero
17 bzero(s,20);
18
20 printf("Initail Success");
21
22 getchar();
23 return 0;
24 }