FILE STRUCTURE IN fopen

hello friends
fopen function in c returns a pointer to a structure type FILE.this is defined in stdio.h as

typedef struct
{
char* _ptr;
int _cnt;
char* _base;
int _flag;
int _file;
int _charbuf;
int _bufsiz;
char* _tmpfname;
}FILE;

can you tell me the meaning of the internal variables of this structure?
hoping a quick reply

puneet mishra
here is an interesting read:

http://tigcc.ticalc.org/doc/stdio.html#FILE
Topic archived. No new replies allowed.