fclose.3
来自「Unix操作系统minix 2.0源码」· 3 代码 · 共 60 行
3
60 行
FCLOSE(3) Minix Programmer's Manual FCLOSE(3)
NAME
fclose, fflush - close or flush a stream
SYNOPSIS
#include <stdio.h>
int fclose(FILE *stream)
int fflush(FILE *stream)
DESCRIPTION
Fclose causes any buffers for the named stream to be emptied, and the
file to be closed. Buffers allocated by the standard input/output system
are freed.
Fclose is performed automatically upon calling exit(3).
Fflush causes any buffered data for the named output stream to be written
to that file. The stream remains open.
SEE ALSO
close(2), fopen(3), setbuf(3).
DIAGNOSTICS
These routines return EOF if stream is not associated with an output
file, or if buffered data cannot be transferred to that file.
May 15, 1985 1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?