Lines Matching refs:FILE
8 typedef struct FILE {
12 } FILE;
20 extern FILE *stdin;
21 extern FILE *stdout;
22 extern FILE *stderr;
26 FILE *fopen(const char *path, const char *mode);
27 int fclose(FILE *fh);
28 int feof(FILE *fh);
29 int fflush(FILE *fh);
30 size_t fread(void *buf, size_t size, size_t nmemb, FILE *fh);
31 size_t fwrite(const void *buf, size_t size, size_t nmemb, FILE *fh);
33 int fputc(int ch, FILE *fh);
34 int fputs(const char *str, FILE *fh);
35 int fgetc(FILE *fh);
36 char *fgets(char *str, int size, FILE *fh);
42 int fprintf(FILE *stream, const char *fmt, ...);