Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - file a structure, defined in stdio.h this structure is_ http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   FILE             A structure, defined in stdio.h This structure is_
                    used  in all stream input and  output  operations.
                    The fields of the structure hold information about
                    the current state of the stream.


                    Definition:
                       typedef struct _iobuf{
                          char   *_ptr;
                          /* pointer to next character position  */
                          int   _cnt;
                          /* number of characters left in buffer */
                          char   *_base;
                          /* pointer to start of buffer          */
                          int   _flag;
                          /* various info about this channel     */
                          int   _file;
                          /* file "handle"                       */
                          unsigned _bufsiz;
                          /* size of buffer being used           */
                          #ifdef   BIGBUF
                             int   _seg;
                             /* segment of buffer if _IOBIGBUF   */
                          #endif
                       } FILE;

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson