📄 memiset.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 + -