mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 22:57:44 +00:00
LibC: Implement ungetwc()
This commit is contained in:
parent
14b91a3fe9
commit
e717ca32d1
7 changed files with 63 additions and 18 deletions
|
@ -78,6 +78,7 @@ wint_t putwc(wchar_t wc, FILE* stream);
|
|||
wint_t putwchar(wchar_t wc);
|
||||
wchar_t* fgetws(wchar_t* __restrict ws, int n, FILE* __restrict stream);
|
||||
int fputws(const wchar_t* __restrict ws, FILE* __restrict stream);
|
||||
wint_t ungetwc(wint_t wc, FILE* stream);
|
||||
int fwide(FILE* stream, int mode);
|
||||
|
||||
int wprintf(const wchar_t* __restrict format, ...);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue