Netcruzer Library API  V2.03
 All Data Structures Files Functions Variables Typedefs Enumerations Macros Groups Pages
stdio.h
Go to the documentation of this file.
1 
188 #define FILE FILE
189 
190 
191 
197 #define fpos_t fpos_t
198 
199 
200 
206 #define size_t size_t
207 
208 
209 
217 #define _IOFBF _IOFBF
218 
219 
220 
228 #define _IOLBF _IOLBF
229 
230 
231 
239 #define _IONBF
240 
241 
242 
250 #define BUFSIZ
251 
252 
253 
264 #define EOF
265 
266 
267 
276 #define FILENAME_MAX
277 
278 
279 
289 #define FOPEN_MAX
290 
291 
292 
303 #define L_tmpnam
304 
305 
306 
312 #define NULL (0)
313 
314 
315 
325 #define SEEK_CUR
326 
327 
328 
337 #define SEEK_END
338 
339 
340 
349 #define SEEK_SET
350 
351 
352 
358 #define stderr stderr
359 
360 
361 
367 #define stdin stdin
368 
369 
370 
376 #define stdout stdout
377 
378 
379 
388 #define TMP_MAX
389 
390 
391 
442 void clearerr(FILE *stream);
443 
444 
445 
482 int fclose(FILE *stream);
483 
484 
485 
523 int feof(FILE *stream);
524 
525 
526 
576 int ferror(FILE *stream);
577 
578 
579 
592 int fflush(FILE *stream);
593 
594 
595 
639 int fgetc(FILE *stream);
640 
641 
642 
701 int fgetpos(FILE *stream, fpos_t *pos);
702 
703 
704 
754 char *fgets(char *s, int n, FILE *stream);
755 
756 
757 
758 
839 FILE *fopen(const char *filename, const char *mode);
840 
841 
842 
887 int fprintf(FILE *stream, const char *format, ...);
888 
889 
890 
924 int fputc(int c, FILE *stream);
925 
926 
927 
955 int fputs(const char *s, FILE *stream);
956 
957 
958 
1050 size_t fread(void *ptr, size_t size, size_t nelem, FILE *stream);
1051 
1052 
1053 
1107 FILE *freopen(const char *filename, const char *mode, FILE *stream);
1108 
1109 
1110 
1173 int fscanf(FILE *stream, const char *format, ...);
1174 
1175 
1176 
1264 int fseek(FILE *stream, long offset, int mode);
1265 
1266 
1267 
1326 int fsetpos(FILE *stream, const fpos_t *pos);
1327 
1328 
1329 
1376 long ftell(FILE *stream);
1377 
1378 
1379 
1470 size_t fwrite(const void *ptr, size_t size, size_t nelem, FILE *stream);
1471 
1472 
1473 
1516 int getc(FILE *stream);
1517 
1518 
1519 
1555 int getchar(void);
1556 
1557 
1558 
1593 char *gets(char *s);
1594 
1595 
1596 
1627 void perror(const char *s);
1628 
1629 
1630 
1751 int printf(const char *format, ...);
1752 
1753 
1754 
1787 int putc(int c, FILE *stream);
1788 
1789 
1790 
1820 int putchar(int c);
1821 
1822 
1823 
1850 int puts(const char *s);
1851 
1852 
1853 
1879 int remove(const char *filename);
1880 
1881 
1882 
1911 int rename(const char *old, const char *new);
1912 
1913 
1914 
1953 void rewind(FILE *stream);
1954 
2058 int scanf(const char *format, ...);
2059 
2060 
2061 
2102 void setbuf(FILE *stream, char *buf);
2103 
2104 
2105 
2160 int setvbuf(FILE *stream, char *buf, int mode, size_t size);
2161 
2162 
2163 
2199 int sprintf(char *s, const char *format, ...);
2200 
2201 
2202 
2247 int sscanf(const char *s, const char *format, ...);
2248 
2249 
2250 
2280 FILE *tmpfile(void);
2281 
2282 
2283 
2317 char *tmpnam(char *s);
2318 
2319 
2320 
2321 
2377 int ungetc(int c, FILE *stream);
2378 
2379 
2380 
2438 int vfprintf(FILE *stream, const char *format, va_list ap);
2439 
2440 
2441 
2489 int vprintf(const char *format, va_list ap);
2490 
2491 
2492 
2543 int vsprintf(char *s, const char *format, va_list ap);