Home | History | Annotate | Download | only in include-fixed

Lines Matching refs:FILE

1 /*  DO NOT EDIT THIS FILE.
8 original, manufacturer supplied header file. */
61 typedef off_t fpos_t; /* stdio file position type */
86 * try to write or read from a file that is in `read' or `write' mode.
106 short _flags; /* flags, below; this FILE is free if 0 */
134 } FILE;
137 extern FILE __sF[];
156 #define __SIGN 0x8000 /* ignore this file in _fwalk */
192 #define SEEK_SET 0 /* set file offset to offset */
195 #define SEEK_CUR 1 /* set file offset to current plus offset */
198 #define SEEK_END 2 /* set file offset to EOF plus offset */
209 void clearerr(FILE *);
210 int fclose(FILE *);
211 int feof(FILE *);
212 int ferror(FILE *);
213 int fflush(FILE *);
214 int fgetc(FILE *);
215 char *fgets(char * __restrict, int, FILE * __restrict);
216 FILE *fopen(const char * __restrict , const char * __restrict);
217 int fprintf(FILE * __restrict , const char * __restrict, ...)
219 int fputc(int, FILE *);
220 int fputs(const char * __restrict, FILE * __restrict);
221 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
222 FILE *freopen(const char * __restrict, const char * __restrict,
223 FILE * __restrict);
224 int fscanf(FILE * __restrict, const char * __restrict, ...)
226 int fseek(FILE *, long, int);
227 long ftell(FILE *);
228 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict);
229 int getc(FILE *);
232 FILE * __restrict);
233 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
244 int putc(int, FILE *);
248 void rewind(FILE *);
251 void setbuf(FILE * __restrict, char * __restrict);
252 int setvbuf(FILE * __restrict, char * __restrict, int, size_t);
255 FILE *tmpfile(void);
256 int ungetc(int, FILE *);
257 int vfprintf(FILE * __restrict, const char * __restrict, __gnuc_va_list)
278 int fgetpos(FILE * __restrict, fpos_t * __restrict);
279 int fsetpos(FILE *, const fpos_t *);
281 int fseeko(FILE *, off_t, int);
282 off_t ftello(FILE *);
287 int vfscanf(FILE * __restrict, const char * __restrict, __gnuc_va_list)
312 FILE *fdopen(int, const char *);
313 int fileno(FILE *);
316 int pclose(FILE *);
317 FILE *popen(const char *, const char *);
321 void flockfile(FILE *);
322 int ftrylockfile(FILE *);
323 void funlockfile(FILE *);
329 int getc_unlocked(FILE *);
331 int putc_unlocked(int, FILE *);
346 char *fgetln(FILE * __restrict, size_t * __restrict);
347 int fpurge(FILE *);
348 int getw(FILE *);
349 int putw(int, FILE *);
350 void setbuffer(FILE *, char *, int);
351 int setlinebuf(FILE *);
361 FILE *funopen(const void *,
434 extern char* __fgets_chk(char*, int, FILE*, size_t);
435 extern char* __fgets_real(char*, int, FILE*) __asm__(__USER_LABEL_PREFIX__ "fgets");
442 char *fgets(char* dest, int size, FILE* stream) {