Lines Matching defs:FILE
9 FILE *tmpfile (void);
13 int fclose (FILE *);
14 int fflush (FILE *);
15 FILE *fopen (const char * __restrict ,
17 FILE *freopen (const char * __restrict,
18 const char * __restrict, FILE * __restrict);
19 void setbuf (FILE * __restrict, char * __restrict);
20 int setvbuf (FILE * __restrict, char * __restrict,
24 int fprintf (FILE * __restrict stream,
26 int fscanf (FILE * __restrict, const char * __restrict, ...);
32 int vfprintf (FILE * __restrict,
39 int fgetc (FILE *);
40 char *fgets (char * __restrict, int, FILE * __restrict);
41 int fputc (int, FILE *);
42 int fputs (const char * __restrict, FILE * __restrict);
43 int getc (FILE *);
46 int putc (int, FILE *);
49 int ungetc (int, FILE *);
53 FILE * __restrict);
55 FILE * __restrict);
58 int fgetpos (FILE * __restrict, fpos_t * __restrict);
59 int fseek (FILE *, long, int);
60 int fsetpos (FILE *, const fpos_t *);
61 long ftell (FILE *);
62 void rewind (FILE *);
65 void clearerr (FILE *);
66 int feof (FILE *);
67 int ferror (FILE *);
72 FILE *fdopen (int, const char *);
73 void flockfile (FILE *);
74 int ftrylockfile (FILE *);
75 void funlockfile (FILE *);
76 int getc_unlocked (FILE *);
78 int putc_unlocked (int, FILE *);
80 int pclose (FILE *);
81 FILE *popen (const char *, const char *);
90 int fseeko (FILE *, off_t, int);
91 char *fgetln (FILE * __restrict, size_t * __restrict);
92 char *fparseln (FILE *, size_t *, size_t *, const char[3], int);
93 int fpurge (FILE *);
94 void setbuffer (FILE *, char *, int);
95 int setlinebuf (FILE *);
223 unsigned short _flags; /**< flags, below; this FILE is free if 0 */
255 } FILE;
258 extern FILE __sF[];
323 #define stdin (&__sF[0]) /**< FILE reference for the STanDard INput stream. */
324 #define stdout (&__sF[1]) /**< FILE reference for the STanDard OUTput stream. */
325 #define stderr (&__sF[2]) /**< FILE reference for the STanDard ERRor stream. */
356 its FILE pointer returned upon successfull completion. When the file is
360 @retval non-NULL The returned value is a pointer to the FILE object
363 FILE *tmpfile (void);
386 @param[in] fp Pointer to a stream object, of type FILE, associated with a
392 int fclose (FILE *fp);
396 @param[in] fp Pointer to a stream object, of type FILE, associated with a
402 int fflush (FILE *fp);
430 @return A pointer to a FILE object associated with the opened file is returned
433 FILE *fopen (const char * __restrict Path, const char * __restrict Mode);
445 @param[in] Ofp Pointer to the FILE object to be closed and associated with the new file.
450 FILE *freopen (const char * __restrict Path, const char * __restrict Mode, FILE * __restrict Ofp);
464 @param[in] fp Pointer to the FILE object which will have its buffer set.
467 void setbuf (FILE * __restrict fp, char * __restrict Buff);
485 @param[in] fp Pointer to the FILE object which will have its buffer set.
493 int setvbuf (FILE * __restrict fp, char * __restrict Buff, int BufMode, size_t BufSize);
725 int fprintf (FILE * __restrict stream, const char * __restrict format, ...);
910 int fscanf (FILE * __restrict stream, const char * __restrict format, ...);
1006 int vfprintf(FILE * __restrict Stream, const char * __restrict Format, va_list Args);
1069 int fgetc (FILE *Stream);
1090 char *fgets (char * __restrict Buff, int Limit, FILE * __restrict Stream);
1108 int fputc (int C, FILE *Stream);
1121 int fputs (const char * __restrict String, FILE * __restrict Stream);
1138 int getc (FILE *);
1183 int putc (int C, FILE *Stream);
1241 int ungetc (int C, FILE *Stream);
1270 FILE * __restrict Stream
1297 FILE * __restrict Stream
1317 int fgetpos (FILE * __restrict Stream, fpos_t * __restrict Pos);
1351 int fseek (FILE *Stream, long Offset, int Whence);
1375 int fsetpos (FILE *Stream, const fpos_t *Pos);
1388 @param[in] Stream Pointer to the FILE object to get the current position of.
1395 long ftell (FILE *Stream);
1404 void rewind (FILE *Stream);
1412 void clearerr(FILE *Stream);
1416 @param[in] Stream Pointer to the FILE object to be tested for EOF.
1421 int feof (FILE *Stream);
1430 int ferror (FILE *Stream);
1455 FILE *fdopen(int, const char *);
1462 void flockfile (FILE *);
1463 int ftrylockfile (FILE *);
1464 void funlockfile (FILE *);
1465 int getc_unlocked (FILE *);
1467 int putc_unlocked (int, FILE *);
1475 int pclose (FILE *);
1476 FILE *popen (const char *, const char *);
1493 //int getw(FILE *);
1494 //int putw(int, FILE *);
1511 int fseeko(FILE *, off_t, int);
1512 off_t ftello(FILE *);
1527 char *fgetln(FILE * __restrict, size_t * __restrict);
1528 char *fparseln(FILE *, size_t *, size_t *, const char[3], int);
1529 int fpurge(FILE *);
1530 void setbuffer(FILE *, char *, int);
1531 int setlinebuf(FILE *);
1537 //int vfscanf(FILE * __restrict, const char * __restrict,
1551 FILE *funopen(const void *,
1564 int __srget(FILE *);
1565 int __swbuf(int, FILE *);
1575 static __inline int __sputc(int _c, FILE *_p) {