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 *);
277 int putc(int, FILE *);
282 void rewind(FILE *);
284 void setbuf(FILE * __restrict, char * __restrict);
285 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
288 FILE *tmpfile(void);
290 int ungetc(int, FILE *);
291 int vfprintf(FILE * __restrict, const char * __restrict,
304 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
322 FILE *fdopen(int, const char *);
323 int fileno(FILE *);
327 int pclose(FILE *);
328 FILE *popen(const char *, const char *);
332 int ftrylockfile(FILE *);
333 void flockfile(FILE *);
334 void funlockfile(FILE *);
340 int getc_unlocked(FILE *);
342 int putc_unlocked(int, FILE *);
346 void clearerr_unlocked(FILE *);
347 int feof_unlocked(FILE *);
348 int ferror_unlocked(FILE *);
349 int fflush_unlocked(FILE *);
350 int fileno_unlocked(FILE *);
351 int fputc_unlocked(int, FILE *);
352 int fputs_unlocked(const char * __restrict, FILE * __restrict);
353 size_t fread_unlocked(void * __restrict, size_t, size_t, FILE * __restrict);
355 FILE * __restrict);
359 int fseeko(FILE *, __off_t, int);
360 __off_t ftello(FILE *);
364 int getw(FILE *);
365 int putw(int, FILE *);
373 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
375 FILE * __restrict);
376 FILE *open_memstream(char **, size_t *);
380 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
391 int fdclose(FILE *, int *);
392 char *fgetln(FILE *, size_t *);
394 int fpurge(FILE *);
395 void setbuffer(FILE *, char *, int);
396 int setlinebuf(FILE *);
411 FILE *funopen(const void *,
429 FILE *fopencookie(void *, const char *, cookie_io_functions_t);
455 int __srget(FILE *);
456 int __swbuf(int, FILE *);
464 static __inline int __sputc(int _c, FILE *_p) { in __sputc()