Correct description for fopen()

This commit is contained in:
apio 2022-10-12 11:58:07 +02:00
parent 9f5b3b76d2
commit b42c866db8

View File

@ -29,7 +29,7 @@ extern "C"
/* Does not do anything for now, since buffered IO is not implemented yet. */
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);
/* Writes formatted output according to the string format to the file stream. */