C语言学习趣事_FILE_TYPE

编辑器加载中... 这里不讨论任何内容,仅列出FILE 类型的定义;不知那位大神对FILE类型很精通,求教于此,叩首先。

 #ifndef _FILE_DEFINED 
struct _iobuf {
char *_ptr;
int _cnt;
char *_base;
int _flag; int _file;
int _charbuf;
int _bufsiz;
char *_tmpfname;
};
typedef struct _iobuf FILE;
#define _FILE_DEFINED #endif
原文地址:https://www.cnblogs.com/volcanol/p/2429583.html