1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:57:44 +00:00

LibC: Implement ungetwc()

This commit is contained in:
Ali Mohammad Pur 2021-12-19 23:29:21 +03:30 committed by Ali Mohammad Pur
parent 14b91a3fe9
commit e717ca32d1
7 changed files with 63 additions and 18 deletions

View file

@ -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, ...);