mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 03:27:44 +00:00
LibC: Implement {f,}putwc()
This commit is contained in:
parent
a4e8a09188
commit
cb90856756
4 changed files with 40 additions and 1 deletions
|
@ -74,5 +74,8 @@ size_t wcsspn(const wchar_t* wcs, const wchar_t* accept);
|
|||
wint_t fgetwc(FILE* stream);
|
||||
wint_t getwc(FILE* stream);
|
||||
wint_t getwchar(void);
|
||||
wint_t fputwc(wchar_t wc, FILE* stream);
|
||||
wint_t putwc(wchar_t wc, FILE* stream);
|
||||
wint_t putwchar(wchar_t wc);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue