Lines Matching refs:FILE
41 FILE
47 FILE* tmpfile(void);
49 int fclose(FILE* stream);
50 int fflush(FILE* stream);
51 FILE* fopen(const char* restrict filename, const char* restrict mode);
52 FILE* freopen(const char* restrict filename, const char * restrict mode,
53 FILE * restrict stream);
54 void setbuf(FILE* restrict stream, char* restrict buf);
55 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size);
56 int fprintf(FILE* restrict stream, const char* restrict format, ...);
57 int fscanf(FILE* restrict stream, const char * restrict format, ...);
63 int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg);
64 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99
71 int fgetc(FILE* stream);
72 char* fgets(char* restrict s, int n, FILE* restrict stream);
73 int fputc(int c, FILE* stream);
74 int fputs(const char* restrict s, FILE* restrict stream);
75 int getc(FILE* stream);
78 int putc(int c, FILE* stream);
81 int ungetc(int c, FILE* stream);
83 FILE* restrict stream);
85 FILE* restrict stream);
86 int fgetpos(FILE* restrict stream, fpos_t* restrict pos);
87 int fseek(FILE* stream, long offset, int whence);
88 int fsetpos(FILE*stream, const fpos_t* pos);
89 long ftell(FILE* stream);
90 void rewind(FILE* stream);
91 void clearerr(FILE* stream);
92 int feof(FILE* stream);
93 int ferror(FILE* stream);
112 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_getc(FILE* __stream) {return getc(__stream);}
114 inline _LIBCPP_INLINE_VISIBILITY int getc(FILE* __stream) {return __libcpp_getc(__stream);}
124 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_putc(int __c, FILE* __stream) {return putc(__c, __str…
126 inline _LIBCPP_INLINE_VISIBILITY int putc(int __c, FILE* __stream) {return __libcpp_putc(__c, __str…
149 inline _LIBCPP_INLINE_VISIBILITY void __libcpp_clearerr(FILE* __stream) {return clearerr(__stream);}
151 inline _LIBCPP_INLINE_VISIBILITY void clearerr(FILE* __stream) {return __libcpp_clearerr(__stream);}
155 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_feof(FILE* __stream) {return feof(__stream);}
157 inline _LIBCPP_INLINE_VISIBILITY int feof(FILE* __stream) {return __libcpp_feof(__stream);}
161 inline _LIBCPP_INLINE_VISIBILITY int __libcpp_ferror(FILE* __stream) {return ferror(__stream);}
163 inline _LIBCPP_INLINE_VISIBILITY int ferror(FILE* __stream) {return __libcpp_ferror(__stream);}
168 using ::FILE;