bzero.c

来自「linux下用PCMCIA无线网卡虚拟无线AP的程序源码」· C语言 代码 · 共 16 行

C
16
字号
/* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk> * This file is part of the Linux-8086 C library and is distributed * under the GNU Library General Public License. */#include <unistd.h>#include <string.h>#include <sys/types.h>void bzero(__ptr_t dest, size_t len){	/* (void) memset(dest, '\0', len); */	while (len--)		*(char *) (dest++) = '\0';}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?