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)
307 FILE *fdopen(int, const char *);
308 int fileno(FILE *);
311 int pclose(FILE *);
312 FILE *popen(const char *, const char *);
316 void flockfile(FILE *);
317 int ftrylockfile(FILE *);
318 void funlockfile(FILE *);
324 int getc_unlocked(FILE *);
326 int putc_unlocked(int, FILE *);
345 char *fgetln(FILE *, size_t *);
346 int fpurge(FILE *);
347 int getw(FILE *);
348 int putw(int, FILE *);
349 void setbuffer(FILE *, char *, int);
350 int setlinebuf(FILE *);
360 FILE *funopen(const void *,
374 int __srget(FILE *);
375 int __swbuf(int, FILE *);
384 static __inline int __sputc(int _c, FILE *_p) {