Searched defs:__sFILE (Results 1 – 1 of 1) sorted by relevance
113 typedef struct __sFILE { struct114 unsigned char *_p; /* current position in (some) buffer */115 int _r; /* read space left for getc() */116 int _w; /* write space left for putc() */117 unsigned short _flags; /* flags, below; this FILE is free if 0 */118 short _file; /* fileno, if Unix descriptor, else -1 */119 struct __sbuf _bf; /* the buffer (at least 1 byte, if !NULL) */120 int _lbfsize; /* 0 or -_bf._size, for inline putc */123 void *_cookie; /* cookie passed to io functions */124 int (*_close)(void *);[all …]