Home | History | Annotate | Download | only in include

Lines Matching refs:FILE

78 typedef off_t fpos_t;		/* stdio file position type */
103 * try to write or read from a file that is in `read' or `write' mode.
123 short _flags; /* flags, below; this FILE is free if 0 */
151 } FILE;
154 extern FILE __sF[];
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 int fgetpos(FILE *, fpos_t *);
231 char *fgets(char *, int, FILE *);
232 FILE *fopen(const char *, const char *);
233 int fprintf(FILE *, const char *, ...);
234 int fputc(int, FILE *);
235 int fputs(const char *, FILE *);
236 size_t fread(void *, size_t, size_t, FILE *);
237 FILE *freopen(const char *, const char *, FILE *);
238 int fscanf(FILE *, const char *, ...);
239 int fseek(FILE *, long, int);
240 int fseeko(FILE *, off_t, int);
241 int fsetpos(FILE *, const fpos_t *);
242 long ftell(FILE *);
243 off_t ftello(FILE *);
244 size_t fwrite(const void *, size_t, size_t, FILE *);
245 int getc(FILE *);
256 int putc(int, FILE *);
261 void rewind(FILE *);
263 void setbuf(FILE *, char *);
264 int setvbuf(FILE *, char *, int, size_t);
267 FILE *tmpfile(void);
269 int ungetc(int, FILE *);
270 int vfprintf(FILE *, const char *, __va_list);
278 int vfscanf(FILE *, const char *, __va_list)
305 FILE *fdopen(int, const char *);
306 int fileno(FILE *);
309 int pclose(FILE *);
310 FILE *popen(const char *, const char *);
314 void flockfile(FILE *);
315 int ftrylockfile(FILE *);
316 void funlockfile(FILE *);
322 int getc_unlocked(FILE *);
324 int putc_unlocked(int, FILE *);
343 char *fgetln(FILE *, size_t *);
344 int fpurge(FILE *);
345 int getw(FILE *);
346 int putw(int, FILE *);
347 void setbuffer(FILE *, char *, int);
348 int setlinebuf(FILE *);
358 FILE *funopen(const void *,
372 int __srget(FILE *);
373 int __swbuf(int, FILE *);
382 static __inline int __sputc(int _c, FILE *_p) {