📄 fc
字号:
@c ----------------------------------------------------------------------
@node fchmod, unix
@heading @code{fchmod}
@subheading Syntax
@example
#include <unistd.h>
int fchmod(int file, int mode);
@end example
@subheading Description
This function is not implemented under MS-DOS. If you call it, it will
only write a warning to stderr.
@c ----------------------------------------------------------------------
@node fclose, stdio
@heading @code{fclose}
@subheading Syntax
@example
#include <stdio.h>
int fclose(FILE *file);
@end example
@subheading Description
This function closes the given @var{file}.
@subheading Return Value
Zero on success, else @code{EOF}.
@subheading Example
@example
FILE *f = fopen("data", "r");
fprintf(f, "Hello\n");
fclose(f);
@end example
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -