Lines Matching full:file
19 typedef struct _FILE FILE;
20 #define SEEK_SET 0 /* Seek from beginning of file. */
22 #define SEEK_END 2 /* Seek from end of file. */
24 extern FILE *stdin;
25 extern FILE *stdout;
26 extern FILE *stderr;
27 // Include a variant of standard streams that occur in the pre-processed file.
28 extern FILE *__stdinp;
29 extern FILE *__stdoutp;
30 extern FILE *__stderrp;
33 int fscanf(FILE *restrict, const char *restrict, ...);
35 int fprintf(FILE *restrict, const char *restrict, ...);
38 void setbuf(FILE *restrict, char *restrict);
39 int setvbuf(FILE *restrict, char *restrict, int, size_t);
41 FILE *funopen(const void *,
47 FILE *fopen(const char *restrict path, const char *restrict mode);
48 FILE *fdopen(int fd, const char *mode);
49 FILE *tmpfile(void);
50 FILE *freopen(const char *restrict pathname, const char *restrict mode, FILE *restrict stream);
51 FILE *popen(const char *command, const char *mode);
52 int fclose(FILE *fp);
53 int pclose(FILE *stream);
54 size_t fread(void *restrict, size_t, size_t, FILE *restrict);
55 size_t fwrite(const void *restrict, size_t, size_t, FILE *restrict);
56 int fgetc(FILE *stream);
57 char *fgets(char *restrict str, int count, FILE *restrict stream);
58 int fputc(int ch, FILE *stream);
59 int fputs(const char *restrict s, FILE *restrict stream);
60 int ungetc(int c, FILE *stream);
61 ssize_t getdelim(char **restrict lineptr, size_t *restrict n, int delimiter, FILE *restrict stream);
62 ssize_t getline(char **restrict lineptr, size_t *restrict n, FILE *restrict stream);
63 int fseek(FILE *__stream, long int __off, int __whence);
64 int fseeko(FILE *__stream, off_t __off, int __whence);
65 long int ftell(FILE *__stream);
66 off_t ftello(FILE *__stream);
67 void rewind(FILE *__stream);
68 int fgetpos(FILE *restrict stream, fpos_t *restrict pos);
69 int fsetpos(FILE *stream, const fpos_t *pos);
70 void clearerr(FILE *stream);
71 int feof(FILE *stream);
72 int ferror(FILE *stream);
73 int fileno(FILE *stream);
74 int fflush(FILE *stream);
77 int getc(FILE *stream);
136 int execlp(const char *file, const char *arg, ...);
139 int execvp(const char *file, char *const argv[]);
140 int execvpe(const char *file, char *const argv[], char *const envp[]);