Subversion Repositories HelenOS

Rev

Rev 4509 | Rev 4541 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4509 Rev 4514
Line 104... Line 104...
104
extern int asprintf(char **, const char *, ...);
104
extern int asprintf(char **, const char *, ...);
105
extern int vsnprintf(char *, size_t, const char *, va_list);
105
extern int vsnprintf(char *, size_t, const char *, va_list);
106
 
106
 
107
/* File stream functions */
107
/* File stream functions */
108
extern FILE *fopen(const char *, const char *);
108
extern FILE *fopen(const char *, const char *);
-
 
109
extern FILE *fdopen(int, const char *);
109
extern int fclose(FILE *);
110
extern int fclose(FILE *);
110
 
111
 
111
extern size_t fread(void *, size_t, size_t, FILE *);
112
extern size_t fread(void *, size_t, size_t, FILE *);
112
extern size_t fwrite(const void *, size_t, size_t, FILE *);
113
extern size_t fwrite(const void *, size_t, size_t, FILE *);
113
 
114
 
114
extern int fseek(FILE *, long, int);
115
extern int fseek(FILE *, long, int);
-
 
116
extern void rewind(FILE *);
115
extern int ftell(FILE *);
117
extern int ftell(FILE *);
116
extern int feof(FILE *);
118
extern int feof(FILE *);
117
 
119
 
118
extern int fflush(FILE *);
120
extern int fflush(FILE *);
119
extern int ferror(FILE *);
121
extern int ferror(FILE *);