Rev 3756 | Rev 3758 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3756 | Rev 3757 | ||
---|---|---|---|
Line 87... | Line 87... | ||
87 | extern size_t fwrite(const void *, size_t, size_t, FILE *); |
87 | extern size_t fwrite(const void *, size_t, size_t, FILE *); |
88 | extern int feof(FILE *); |
88 | extern int feof(FILE *); |
89 | extern int ferror(FILE *); |
89 | extern int ferror(FILE *); |
90 | extern void clearerr(FILE *); |
90 | extern void clearerr(FILE *); |
91 | 91 | ||
- | 92 | extern int fgetc(FILE *);; |
|
- | 93 | extern int fputc(int, FILE *); |
|
- | 94 | extern int fputs(const char *, FILE *); |
|
- | 95 | ||
- | 96 | #define getc fgetc |
|
- | 97 | #define putc fputc |
|
- | 98 | ||
- | 99 | extern int fseek(FILE *, long, int); |
|
- | 100 | ||
- | 101 | #ifndef SEEK_SET |
|
- | 102 | #define SEEK_SET 0 |
|
- | 103 | #define SEEK_CUR 1 |
|
- | 104 | #define SEEK_END 2 |
|
- | 105 | #endif |
|
- | 106 | ||
92 | #endif |
107 | #endif |
93 | 108 | ||
94 | /** @} |
109 | /** @} |
95 | */ |
110 | */ |