C/C++/ 文件

来源:互联网 发布:对号入座的网络词 编辑:程序博客网 时间:2024/05/02 00:06

#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
=========== VC6.0VS2008/2010 stdio.h End ===========

0 0