bz
来自「Algorithms for Image Processing and Comp」· 代码 · 共 27 行
TXT
27 行
@c ----------------------------------------------------------------------
@node bzero, memory
@heading @code{bzero}
@subheading Syntax
@example
#include <string.h>
void bzero(void *pointer, int length);
@end example
@subheading Description
The data at @var{pointer} is filled with @var{length} zeros.
@subheading Return Value
None.
@subheading Example
@example
char foo[100];
bzero(foo,100);
@end example
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?