Compare commits

..

1 Commits

Author SHA1 Message Date
f704739a7c
libc: Implement setbuf(), setbuffer(), and setlinebuf()
Some checks failed
continuous-integration/drone/pr Build is failing
These are all simple wrappers around setvbuf().
2023-07-22 11:34:05 +02:00

View File

@ -132,6 +132,8 @@ extern "C"
/* Clear the error and end-of-file indicators in stream. */ /* Clear the error and end-of-file indicators in stream. */
void clearerr(FILE* stream); void clearerr(FILE* stream);
void setbuf(FILE*, char*);
/* Write formatted output to a file. */ /* Write formatted output to a file. */
int fprintf(FILE* stream, const char* format, ...); int fprintf(FILE* stream, const char* format, ...);