LibC: Implement getwchar()

This commit is contained in:
Ali Mohammad Pur 2021-12-19 21:18:58 +03:30 committed by Ali Mohammad Pur
commit a4e8a09188
Notes: sideshowbarker 2024-07-17 22:29:41 +09:00
2 changed files with 6 additions and 0 deletions

View file

@ -56,4 +56,9 @@ wint_t getwc(FILE* stream)
{
return fgetwc(stream);
}
wint_t getwchar()
{
return getwc(stdin);
}
}