Lines Matching defs:FILE
99 * try to write or read from a file that is in `read' or `write' mode.
117 unsigned short _flags; /* flags, below; this FILE is free if 0 */
129 /* file extension */
147 } FILE;
150 extern FILE __sF[3];
207 #define SEEK_SET 0 /* set file offset to offset */
210 #define SEEK_CUR 1 /* set file offset to current plus offset */
213 #define SEEK_END 2 /* set file offset to EOF plus offset */
224 void clearerr(FILE *);
225 int fclose(FILE *);
226 int feof(FILE *);
227 int ferror(FILE *);
228 int fflush(FILE *);
229 int fgetc(FILE *);
230 char *fgets(char * __restrict, int, FILE * __restrict);
231 FILE *fopen(const char * __restrict , const char * __restrict);
232 int fprintf(FILE * __restrict, const char * __restrict, ...)
234 int fputc(int, FILE *);
235 int fputs(const char * __restrict, FILE * __restrict);
236 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
237 FILE *freopen(const char * __restrict, const char * __restrict,
238 FILE * __restrict);
239 int fscanf(FILE * __restrict, const char * __restrict, ...)
241 int fseek(FILE *, long, int);
242 long ftell(FILE *);
243 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
244 int getc(FILE *);
249 int putc(int, FILE *);
253 void rewind(FILE *);
256 void setbuf(FILE * __restrict, char * __restrict);
257 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
260 FILE *tmpfile(void);
261 int ungetc(int, FILE *);
262 int vfprintf(FILE * __restrict, const char * __restrict, __va_list)
285 int fgetpos(FILE * __restrict, fpos_t * __restrict) __RENAME(__fgetpos50);
286 int fsetpos(FILE *, const fpos_t *) __RENAME(__fsetpos50);
303 FILE *fdopen(int, const char *);
304 int fileno(FILE *);
314 void flockfile(FILE *);
315 int ftrylockfile(FILE *);
316 void funlockfile(FILE *);
317 int getc_unlocked(FILE *);
319 int putc_unlocked(int, FILE *);
330 int pclose(FILE *);
331 FILE *popen(const char *, const char *);
336 FILE *popenve(const char *, char *const *, char *const *, const char *);
360 int getw(FILE *);
361 int putw(int, FILE *);
380 int fseeko(FILE *, off_t, int);
381 off_t ftello(FILE *);
392 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
414 char *fgetln(FILE * __restrict, size_t * __restrict);
415 char *fparseln(FILE *, size_t *, size_t *, const char[3], int);
416 int fpurge(FILE *);
417 void setbuffer(FILE *, char *, int);
418 int setlinebuf(FILE *);
430 FILE *funopen(const void *,
435 FILE *funopen2(const void *,
452 int __srget(FILE *);
453 int __swbuf(int, FILE *);
462 static __inline int __sputc(int _c, FILE *_p) {
531 FILE *fmemopen(void * __restrict, size_t, const char * __restrict);
532 FILE *open_memstream(char **, size_t *);
534 FILE * __restrict);
535 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
545 int fprintf_l(FILE * __restrict, locale_t, const char * __restrict, ...)
547 int vfprintf_l(FILE * __restrict, locale_t, const char * __restrict,
573 int fscanf_l(FILE * __restrict, locale_t, const char * __restrict, ...)
581 int vfscanf_l(FILE * __restrict, locale_t, const char * __restrict,