mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:14:58 +00:00
LibC: Implement getwchar()
This commit is contained in:
parent
cf17677206
commit
a4e8a09188
2 changed files with 6 additions and 0 deletions
|
@ -56,4 +56,9 @@ wint_t getwc(FILE* stream)
|
|||
{
|
||||
return fgetwc(stream);
|
||||
}
|
||||
|
||||
wint_t getwchar()
|
||||
{
|
||||
return getwc(stdin);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue