| 3 |
- |
1 |
|
|
|
2 |
/* /usr/include/stdio.h */
|
|
|
3 |
|
|
|
4 |
int remove(char *filename);
|
|
|
5 |
int rename(char *old, char *new);
|
|
|
6 |
int renameat(int oldfd, char *old, int newfd, char *new);
|
|
|
7 |
|
|
|
8 |
|
|
|
9 |
FILE *tmpfile(void);
|
|
|
10 |
FILE *tmpfile64(void);
|
|
|
11 |
char *tmpnam(char *s);
|
|
|
12 |
char *tmpnam_r(char *s);
|
|
|
13 |
char *tempnam(char *dir, char *pfx);
|
|
|
14 |
|
|
|
15 |
|
|
|
16 |
int fclose(FILE *stream);
|
|
|
17 |
int fflush(FILE *stream);
|
|
|
18 |
int fflush_unlocked(FILE *stream);
|
|
|
19 |
int fcloseall(void);
|
|
|
20 |
|
|
|
21 |
|
|
|
22 |
FILE* fopen(char *filename, char *modes);
|
|
|
23 |
FILE* freopen(char *filename, char *modes, FILE *stream);
|
|
|
24 |
|
|
|
25 |
|
|
|
26 |
FILE* fopen64(char *filename, char *modes);
|
|
|
27 |
FILE* freopen64(char *filename, char *modes, FILE *stream);
|
|
|
28 |
FILE* fdopen(int fd, char *modes);
|
|
|
29 |
FILE* fopencookie(void *magic_cookie, char *modes, void *io_funcs);
|
|
|
30 |
FILE* fmemopen(void *s, size_t len, char *modes);
|
|
|
31 |
FILE* open_memstream(void *bufloc, size_t *sizeloc);
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
void setbuf(FILE *stream, char *buf);
|
|
|
35 |
int setvbuf(FILE *stream, char *buf, int modes, size_t n);
|
|
|
36 |
void setbuffer(FILE *stream, char *buf, size_t size);
|
|
|
37 |
void setlinebuf(FILE *stream);
|
|
|
38 |
|
|
|
39 |
|
|
|
40 |
int fprintf(FILE *stream, char *format);
|
|
|
41 |
int printf(char *format);
|
|
|
42 |
int sprintf(char *s, char *format);
|
|
|
43 |
int vfprintf(FILE *s, char *format);
|
|
|
44 |
int vprintf(char *format);
|
|
|
45 |
int vsprintf(char *s, char *format);
|
|
|
46 |
int snprintf(char *s, size_t maxlen, char *format);
|
|
|
47 |
int vsnprintf(char *s, size_t maxlen, char *format);
|
|
|
48 |
int vasprintf(void *ptr, char *f);
|
|
|
49 |
int __asprintf(void *ptr, char *fmt);
|
|
|
50 |
int asprintf(void *ptr, char *fmt);
|
|
|
51 |
int vdprintf(int fd, char *fmt);
|
|
|
52 |
int dprintf(int fd, char *fmt);
|
|
|
53 |
int fscanf(FILE *stream, char *format);
|
|
|
54 |
int scanf(char *format);
|
|
|
55 |
int sscanf(char *s, char *format);
|
|
|
56 |
int vfscanf(FILE *s, char *format);
|
|
|
57 |
int vscanf(char *format);
|
|
|
58 |
int vsscanf(char *s, char *format);
|
|
|
59 |
|
|
|
60 |
int fgetc(FILE *stream);
|
|
|
61 |
int getc(FILE *stream);
|
|
|
62 |
int getchar();
|
|
|
63 |
int getc_unlocked(FILE *stream);
|
|
|
64 |
int getchar_unlocked();
|
|
|
65 |
int fgetc_unlocked(FILE *__stream);
|
|
|
66 |
int fputc(int c, FILE *stream);
|
|
|
67 |
int putc(int c, FILE *stream);
|
|
|
68 |
int putchar(int c);
|
|
|
69 |
int fputc_unlocked(int c, FILE *stream);
|
|
|
70 |
int putc_unlocked(int c, FILE *stream);
|
|
|
71 |
int putchar_unlocked(int c);
|
|
|
72 |
int getw(FILE *stream);
|
|
|
73 |
int putw(int w, FILE *stream);
|
|
|
74 |
char* fgets(char *s, int n, FILE *stream);
|
|
|
75 |
char* gets(char *s);
|
|
|
76 |
char* fgets_unlocked(char *s, int n, FILE *stream);
|
|
|
77 |
size_t __getdelim(void *lineptr, size_t *n, int delimiter, FILE *stream);
|
|
|
78 |
size_t getdelim(void *lineptr, size_t *n, int delimiter, FILE *stream);
|
|
|
79 |
size_t getline(void *lineptr, size_t *n, FILE *stream);
|
|
|
80 |
int fputs(char *s, FILE *stream);
|
|
|
81 |
int puts(char *s);
|
|
|
82 |
int ungetc(int c, FILE *stream);
|
|
|
83 |
|
|
|
84 |
|
|
|
85 |
size_t fread(void *ptr, size_t size, size_t n, FILE *stream);
|
|
|
86 |
size_t fwrite(void *ptr, size_t size, size_t n, FILE *s);
|
|
|
87 |
int fputs_unlocked(char *s, FILE *stream);
|
|
|
88 |
size_t fread_unlocked(void *ptr, size_t size, size_t n, FILE *stream);
|
|
|
89 |
size_t fwrite_unlocked(void *ptr, size_t size, size_t n, FILE *stream);
|
|
|
90 |
int fseek(FILE *stream, long off, int whence);
|
|
|
91 |
long ftell(FILE *stream);
|
|
|
92 |
|
|
|
93 |
|
|
|
94 |
void rewind(FILE *stream);
|
|
|
95 |
int fseeko(FILE *stream, __off_t off, int whence);
|
|
|
96 |
__off_t ftello(FILE *stream);
|
|
|
97 |
int fgetpos(FILE *stream, fpos_t *pos);
|
|
|
98 |
int fsetpos(FILE *stream, fpos_t *pos);
|
|
|
99 |
|
|
|
100 |
|
|
|
101 |
typedef long __off64_t;
|
|
|
102 |
typedef void fpos64_t;
|
|
|
103 |
|
|
|
104 |
|
|
|
105 |
int fseeko64(FILE *stream, __off64_t off, int whence);
|
|
|
106 |
__off64_t ftello64(FILE *stream);
|
|
|
107 |
|
|
|
108 |
|
|
|
109 |
int fgetpos64(FILE *stream, fpos64_t *pos);
|
|
|
110 |
int fsetpos64(FILE *stream, fpos64_t *pos);
|
|
|
111 |
|
|
|
112 |
|
|
|
113 |
void clearerr(FILE *stream);
|
|
|
114 |
int feof(FILE *stream);
|
|
|
115 |
int ferror(FILE *stream);
|
|
|
116 |
void clearerr_unlocked(FILE *stream);
|
|
|
117 |
int feof_unlocked(FILE *stream);
|
|
|
118 |
int ferror_unlocked(FILE *stream);
|
|
|
119 |
|
|
|
120 |
|
|
|
121 |
void perror(char *s);
|
|
|
122 |
|
|
|
123 |
|
|
|
124 |
int fileno(FILE *stream);
|
|
|
125 |
int fileno_unlocked(FILE *stream);
|
|
|
126 |
FILE* popen(char *command, char *modes);
|
|
|
127 |
int pclose(FILE *stream);
|
|
|
128 |
char* ctermid(char *s);
|
|
|
129 |
char* cuserid(char *s);
|
|
|
130 |
|
|
|
131 |
|
|
|
132 |
int obstack_printf(void *obstack, char *format);
|
|
|
133 |
int obstack_vprintf(void *obstack, char *format);
|
|
|
134 |
void flockfile(FILE *stream);
|
|
|
135 |
int ftrylockfile(FILE *stream);
|
|
|
136 |
void funlockfile(FILE *stream);
|
|
|
137 |
|