Correct description for fopen()
This commit is contained in:
parent
9f5b3b76d2
commit
b42c866db8
@ -29,7 +29,7 @@ extern "C"
|
|||||||
/* Does not do anything for now, since buffered IO is not implemented yet. */
|
/* Does not do anything for now, since buffered IO is not implemented yet. */
|
||||||
int fflush(FILE* stream);
|
int fflush(FILE* stream);
|
||||||
|
|
||||||
/* Opens the file at pathname according to the mode string. Returns the file handle on success, or NULL on error. */
|
/* Opens the file specified by pathname. Returns the file handle on success, or NULL on error. */
|
||||||
FILE* fopen(const char* pathname, const char* mode);
|
FILE* fopen(const char* pathname, const char* mode);
|
||||||
|
|
||||||
/* Writes formatted output according to the string format to the file stream. */
|
/* Writes formatted output according to the string format to the file stream. */
|
||||||
|
Loading…
Reference in New Issue
Block a user