⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memiset.c

📁 一个c语言写做的编译器的源码
💻 C
字号:
/*@A (C) 1992 Allen I. Holub                                                */
/* Works like memset but fills integer arrays with an integer value	*/
/* The count is the number of ints (not the number of bytes).  		*/

int	*memiset( dst, with_what, count )
int	*dst, with_what, count;
{
    int *targ;
    for( targ = dst; --count >= 0 ; *targ++ = with_what )
	;
    return dst;
}

⌨️ 快捷键说明

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