Lines Matching refs:FILE

145 } FILE;  typedef
148 extern FILE __sF[];
220 void clearerr(FILE *);
221 int fclose(FILE *);
222 int feof(FILE *);
223 int ferror(FILE *);
224 int fflush(FILE *);
225 int fgetc(FILE *);
226 char *fgets(char * __restrict, int, FILE * __restrict);
227 FILE *fopen(const char * __restrict , const char * __restrict);
228 int fprintf(FILE * __restrict , const char * __restrict, ...)
230 int fputc(int, FILE *);
231 int fputs(const char * __restrict, FILE * __restrict);
232 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
233 FILE *freopen(const char * __restrict, const char * __restrict,
234 FILE * __restrict);
235 int fscanf(FILE * __restrict, const char * __restrict, ...)
237 int fseek(FILE *, long, int);
238 long ftell(FILE *);
239 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
240 int getc(FILE *);
243 FILE * __restrict);
244 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
249 int putc(int, FILE *);
253 void rewind(FILE *);
256 void setbuf(FILE * __restrict, char * __restrict);
257 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
260 FILE *tmpfile(void);
261 int ungetc(int, FILE *);
262 int vfprintf(FILE * __restrict, const char * __restrict, __va_list)
288 int fgetpos(FILE * __restrict, fpos_t * __restrict);
289 int fsetpos(FILE *, const fpos_t *);
291 int fseeko(FILE *, off_t, int);
292 off_t ftello(FILE *);
297 int vfscanf(FILE * __restrict, const char * __restrict, __va_list)
317 FILE *fdopen(int, const char *);
318 int fileno(FILE *);
321 int pclose(FILE *);
322 FILE *popen(const char *, const char *);
326 void flockfile(FILE *);
327 int ftrylockfile(FILE *);
328 void funlockfile(FILE *);
334 int getc_unlocked(FILE *);
336 int putc_unlocked(int, FILE *);
351 char *fgetln(FILE * __restrict, size_t * __restrict);
352 int fpurge(FILE *);
353 void setbuffer(FILE *, char *, int);
354 int setlinebuf(FILE *);
364 FILE *funopen(const void *,
422 extern char* __fgets_chk(char*, int, FILE*, size_t);
423 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
430 char *fgets(char* dest, int size, FILE* stream) { in fgets()