Changeset 04b687b in mainline for uspace/lib/libc/include/stdio.h
- Timestamp:
- 2008-12-29T11:17:44Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63088cc1
- Parents:
- 8b74af07
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/stdio.h
r8b74af07 r04b687b 53 53 } 54 54 55 typedef struct { 56 /** Underlying file descriptor. */ 57 int fd; 58 59 /** Error indicator. */ 60 int error; 61 62 /** End-of-file indicator. */ 63 int eof; 64 } FILE; 65 55 66 extern int getchar(void); 56 67 … … 71 82 extern int rename(const char *, const char *); 72 83 84 extern FILE *fopen(const char *, const char *); 85 extern int fclose(FILE *); 86 extern size_t fread(void *, size_t, size_t, FILE *); 87 extern size_t fwrite(const void *, size_t, size_t, FILE *); 88 extern int feof(FILE *); 89 extern int ferror(FILE *); 90 extern void clearerr(FILE *); 91 73 92 #endif 74 93
Note:
See TracChangeset
for help on using the changeset viewer.