Lines Matching refs:FILE

165 typedef struct __sFILE FILE;  typedef
169 extern FILE *__stdinp;
170 extern FILE *__stdoutp;
171 extern FILE *__stderrp;
251 void clearerr(FILE *);
252 int fclose(FILE *);
253 int feof(FILE *);
254 int ferror(FILE *);
255 int fflush(FILE *);
256 int fgetc(FILE *);
257 int fgetpos(FILE * __restrict, fpos_t * __restrict);
258 char *fgets(char * __restrict, int, FILE * __restrict);
259 FILE *fopen(const char * __restrict, const char * __restrict);
260 int fprintf(FILE * __restrict, const char * __restrict, ...);
261 int fputc(int, FILE *);
262 int fputs(const char * __restrict, FILE * __restrict);
263 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
264 FILE *freopen(const char * __restrict, const char * __restrict, FILE * __restrict);
265 int fscanf(FILE * __restrict, const char * __restrict, ...);
266 int fseek(FILE *, long, int);
267 int fsetpos(FILE *, const fpos_t *);
268 long ftell(FILE *);
269 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
270 int getc(FILE *);
278 int putc(int, FILE *);
283 void rewind(FILE *);
285 void setbuf(FILE * __restrict, char * __restrict);
286 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
289 FILE *tmpfile(void);
291 int ungetc(int, FILE *);
292 int vfprintf(FILE * __restrict, const char * __restrict,
305 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
323 FILE *fdopen(int, const char *);
324 int fileno(FILE *);
328 int pclose(FILE *);
329 FILE *popen(const char *, const char *);
333 int ftrylockfile(FILE *);
334 void flockfile(FILE *);
335 void funlockfile(FILE *);
341 int getc_unlocked(FILE *);
343 int putc_unlocked(int, FILE *);
347 void clearerr_unlocked(FILE *);
348 int feof_unlocked(FILE *);
349 int ferror_unlocked(FILE *);
350 int fileno_unlocked(FILE *);
354 int fseeko(FILE *, __off_t, int);
355 __off_t ftello(FILE *);
359 int getw(FILE *);
360 int putw(int, FILE *);
368 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
370 FILE * __restrict);
371 FILE *open_memstream(char **, size_t *);
375 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
386 int fdclose(FILE *, int *);
387 char *fgetln(FILE *, size_t *);
389 int fpurge(FILE *);
390 void setbuffer(FILE *, char *, int);
391 int setlinebuf(FILE *);
406 FILE *funopen(const void *,
424 FILE *fopencookie(void *, const char *, cookie_io_functions_t);
450 int __srget(FILE *);
451 int __swbuf(int, FILE *);
459 static __inline int __sputc(int _c, FILE *_p) { in __sputc()