📄 feof.c
字号:
/*****************************************************************************/
/* FEOF.C v2.54 */
/* Copyright (c) 1995-2004 Texas Instruments Incorporated */
/*****************************************************************************/
/*****************************************************************************/
/* This file contains the function FEOF, which returns a 1 if an EOF */
/* has occured on that stream. The function merely calls a macro */
/* that is defined in STDIO.H. */
/*****************************************************************************/
#include <stdio.h>
_CODE_ACCESS int feof(FILE *_fp) { return (((_fp)->flags & _STATEOF)); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -