#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
|