?? zero.c
字號(hào):
#ifndef lintstatic char *sccsid = "@(#)zero.c 4.1 (ULTRIX) 7/17/90";#endif lint/* Zero `cnt' bytes starting at the address `ptr'. Return `ptr'.*/char *zero(p,n)register char *p;register int n;{ char *op = p; while (--n >= 0) *p++ = 0; return(op);}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -