Lines Matching refs:FILE

97 	short	_flags;		/* flags, below; this FILE is free if 0 */
125 } FILE;
128 extern FILE __sF[];
200 void clearerr(FILE *);
201 int fclose(FILE *);
202 int feof(FILE *);
203 int ferror(FILE *);
204 int fflush(FILE *);
205 int fgetc(FILE *);
206 char *fgets(char * __restrict, int, FILE * __restrict);
207 FILE *fopen(const char * __restrict , const char * __restrict);
208 int fprintf(FILE * __restrict , const char * __restrict, ...)
210 int fputc(int, FILE *);
211 int fputs(const char * __restrict, FILE * __restrict);
212 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
213 FILE *freopen(const char * __restrict, const char * __restrict,
214 FILE * __restrict);
215 int fscanf(FILE * __restrict, const char * __restrict, ...)
217 int fseek(FILE *, long, int);
218 long ftell(FILE *);
219 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
220 int getc(FILE *);
223 FILE * __restrict);
224 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
235 int putc(int, FILE *);
239 void rewind(FILE *);
242 void setbuf(FILE * __restrict, char * __restrict);
243 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
246 FILE *tmpfile(void);
247 int ungetc(int, FILE *);
248 int vfprintf(FILE * __restrict, const char * __restrict, __va_list)
265 int fgetpos(FILE * __restrict, fpos_t * __restrict);
266 int fsetpos(FILE *, const fpos_t *);
268 int fseeko(FILE *, off_t, int);
269 off_t ftello(FILE *);
274 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
299 FILE *fdopen(int, const char *);
300 int fileno(FILE *);
303 int pclose(FILE *);
304 FILE *popen(const char *, const char *);
308 void flockfile(FILE *);
309 int ftrylockfile(FILE *);
310 void funlockfile(FILE *);
316 int getc_unlocked(FILE *);
318 int putc_unlocked(int, FILE *);
336 char *fgetln(FILE * __restrict, size_t * __restrict);
337 int fpurge(FILE *);
338 int getw(FILE *);
339 int putw(int, FILE *);
340 void setbuffer(FILE *, char *, int);
341 int setlinebuf(FILE *);
351 FILE *funopen(const void *,
365 int __srget(FILE *);
366 int __swbuf(int, FILE *);
375 static __inline int __sputc(int _c, FILE *_p) {
496 extern char *__fgets_real(char *, int, FILE *)
500 extern char *__fgets_chk(char *, int, FILE *, size_t);
503 char *fgets(char *dest, int size, FILE *stream)