Home | History | Annotate | Download | only in stdio

Lines Matching defs:fp

117 	FILE		*fp;
127 if ((fp = __sfp()) == NULL) {
135 fp->_flags = 0;
148 fp->_flags = __SWR;
149 fp->_file = -1;
150 fp->_cookie = st;
151 fp->_read = NULL;
152 fp->_write = memstream_write;
153 fp->_seek = memstream_seek;
154 fp->_close = memstream_close;
155 _SET_ORIENTATION(fp, -1);
157 return (fp);