Lines Matching refs:FILE
40 FILE
46 FILE* tmpfile(void);
48 int fclose(FILE* stream);
49 int fflush(FILE* stream);
50 FILE* fopen(const char* restrict filename, const char* restrict mode);
51 FILE* freopen(const char* restrict filename, const char * restrict mode,
52 FILE * restrict stream);
53 void setbuf(FILE* restrict stream, char* restrict buf);
54 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size);
55 int fprintf(FILE* restrict stream, const char* restrict format, ...);
56 int fscanf(FILE* restrict stream, const char * restrict format, ...);
62 int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg);
63 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99
70 int fgetc(FILE* stream);
71 char* fgets(char* restrict s, int n, FILE* restrict stream);
72 int fputc(int c, FILE* stream);
73 int fputs(const char* restrict s, FILE* restrict stream);
74 int getc(FILE* stream);
77 int putc(int c, FILE* stream);
80 int ungetc(int c, FILE* stream);
82 FILE* restrict stream);
84 FILE* restrict stream);
85 int fgetpos(FILE* restrict stream, fpos_t* restrict pos);
86 int fseek(FILE* stream, long offset, int whence);
87 int fsetpos(FILE*stream, const fpos_t* pos);
88 long ftell(FILE* stream);
89 void rewind(FILE* stream);
90 void clearerr(FILE* stream);
91 int feof(FILE* stream);
92 int ferror(FILE* stream);
107 using ::FILE;